<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=ks_c_5601-1987" http-equiv=Content-Type>
<META content="MSHTML 5.00.3813.800" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>I found code mistake in the vlc source code 0.6.2 (redhat 
linux version)</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>The following lines in "src/input/input_ext-plugins.c" 
should be changed.</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>line 184 :</FONT></DIV>
<DIV><FONT size=2>    //p_buf = malloc( sizeof(input_buffers_t) + 
i_size );</FONT></DIV>
<DIV><FONT size=2>    p_buf = malloc( sizeof(data_buffer_t) + 
i_size );</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>line 196:</FONT></DIV>
<DIV><FONT size=2>
<DIV><FONT size=2>    //p_buf = malloc( sizeof(input_buffers_t) + 
i_size );</FONT></DIV>
<DIV><FONT size=2>    p_buf = malloc( sizeof(data_buffer_t) + 
i_size );</FONT></DIV>
<DIV> </DIV>
<DIV>line 285:</DIV>
<DIV>    //= (byte_t *)p_buf + 
sizeof(input_buffers_t);</DIV></FONT></DIV>
<DIV><FONT size=2>    = (byte_t *)p_buf + 
sizeof(data_buffer_t);</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>Can anybody tell me if above changes are correct 
?</FONT></DIV>
<DIV> </DIV>
<DIV><FONT size=2>Kil-Moo Lee</FONT></DIV>
<DIV> </DIV></BODY></HTML>