pthread: check pthread_create() return value.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-11-27 06:17:03 +01:00
parent 2bb79b23fe
commit 47044625ba
1 changed files with 2 additions and 0 deletions

View File

@ -766,6 +766,8 @@ static int frame_thread_init(AVCodecContext *avctx)
if (err) goto error;
p->thread_created= !pthread_create(&p->thread, NULL, frame_worker_thread, p);
if(!p->thread_created)
goto error;
}
return 0;