From fffcb5e8412c8d1304b07eee7ac2d79cf280a1f4 Mon Sep 17 00:00:00 2001 From: Juanjo Date: Mon, 6 May 2002 21:34:50 +0000 Subject: - Segfault fixed when liba52 dynamic library isn't found. Originally committed as revision 449 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/a52dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/a52dec.c') diff --git a/libavcodec/a52dec.c b/libavcodec/a52dec.c index 7ed9ba9..d639b8a 100644 --- a/libavcodec/a52dec.c +++ b/libavcodec/a52dec.c @@ -80,7 +80,7 @@ static int a52_decode_init(AVCodecContext *avctx) s->handle = dlopen(liba52name, RTLD_LAZY); if (!s->handle) { - fprintf(stderr, "A52 library %s could not be opened: %s\n", liba52name, dlerror()); + fprintf(stderr, "A52 library %s could not be opened! \n%s\n", liba52name, dlerror()); return -1; } s->a52_init = (a52_state_t* (*)(uint32_t)) dlsymm(s->handle, "a52_init"); -- cgit v1.1