Commit e27457cb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Revert "xiph demux: Kill a warning (comparison betw. signed and unsigned)"

This reverts commit ea5e62b5.

This removes all code from Andri Pálsson
parent 05d0d2b0
......@@ -48,7 +48,7 @@ static inline int xiph_SplitHeaders(unsigned packet_size[], void *packet[], unsi
}
size += packet_size[i];
}
if (end - current < (int)size)
if (end - current < size)
return VLC_EGENERIC;
packet_size[count - 1] = end - current - size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment