winemp3.acm: Ensure null check before dereference.

This commit is contained in:
Jeff Latimer 2007-01-05 11:55:23 +11:00 committed by Alexandre Julliard
parent d7697bd55e
commit cfdd3349f8
1 changed files with 0 additions and 4 deletions

View File

@ -122,10 +122,6 @@ static int read_buf_byte(struct mpstr *mp)
while(pos >= mp->tail->size) {
remove_buf(mp);
pos = mp->tail->pos;
if(!mp->tail) {
fprintf(stderr,"Fatal error!\n");
exit(1);
}
}
b = mp->tail->pnt[pos];