git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a79b5f6
)
Fix invalid comparison, result was always false.
author
Jean-Paul Saman
<jpsaman@videolan.org>
Sat, 21 Oct 2006 12:43:36 +0000
(12:43 +0000)
committer
Jean-Paul Saman
<jpsaman@videolan.org>
Sat, 21 Oct 2006 12:43:36 +0000
(12:43 +0000)
modules/demux/nsc.c
patch
|
blob
|
history
diff --git
a/modules/demux/nsc.c
b/modules/demux/nsc.c
index
6bb9b6c
..
fb61a8a
100644
(file)
--- a/
modules/demux/nsc.c
+++ b/
modules/demux/nsc.c
@@
-246,7
+246,7
@@
char *nscdec( vlc_object_t *p_demux, char* p_encoded )
p_buf8 = buf8;
p_buf16 = (const char *)buf16;
- if( vlc_iconv( conv, &p_buf16, &buf16_size, &p_buf8, &buf8_size )
<
0 )
+ if( vlc_iconv( conv, &p_buf16, &buf16_size, &p_buf8, &buf8_size )
==
0 )
{
msg_Err( p_demux, "iconv failed" );
return NULL;