Hello Alexandre,
2008/3/22, Alexandre Julliard julliard@winehq.org:
"Maarten Lankhorst" m.b.lankhorst@gmail.com writes:
- /* Destination sample should contain no data! But the source sample should */
- assert(!dlen);
- assert(*flen);
Are all these asserts really internal code invariants? It seems to me they could be triggered by invalid input data, and in that case an assert is not the appropriate response.
They are invariants as far as I know, even with corrupt data. Source sample has a value because that is the condition of the while loop. The destination sample is empty because the loop makes the length zero before handing it over. If it somehow had a length larger or equal to 4 (less then 4 is possible and handled) there is something seriously wrong in the handling code since this should not happen, even in invalid input.
Cheers,
Maarten.