mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-04 22:04:38 +00:00
dshow: protect access to curbufsize
Signed-off-by: rogerdpack <rogerpack2005@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
42dbf06df0
commit
a93c221ccd
@ -920,6 +920,7 @@ static int dshow_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
*pkt = pktl->pkt;
|
||||
ctx->pktl = ctx->pktl->next;
|
||||
av_free(pktl);
|
||||
ctx->curbufsize -= pkt->size;
|
||||
}
|
||||
ResetEvent(ctx->event);
|
||||
ReleaseMutex(ctx->mutex);
|
||||
@ -932,8 +933,6 @@ static int dshow_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
}
|
||||
}
|
||||
|
||||
ctx->curbufsize -= pkt->size;
|
||||
|
||||
return pkt->size;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user