]> git.sesse.net Git - vlc/commit
Fix gcc4 warnings (refs #258)
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 10 Jul 2005 08:00:25 +0000 (08:00 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 10 Jul 2005 08:00:25 +0000 (08:00 +0000)
commit5585f98e36b6dd1ef123bec4b8854fa40e09adbb
tree96d4c6cb99deb438efdff8d3a4e95441f2d14de8
parent1090a5b5d7f41de535708062dea6c8058fc76328
Fix gcc4 warnings (refs #258)

NOTE to developers :
When you want to compare n bytes from two buffers, please use :
  memcmp( buf1, buf2, n )
rather than :
  strncmp( buf1, buf2, n )

strncmp should only be used if either of the buffers might be
nul-terminated within its first n bytes.
modules/demux/a52.c