From e9a9e0c21090d18089d212c39e9249f9a7ed559c Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Thu, 23 Jan 2003 23:34:29 +0000 Subject: use av_strdup() Originally committed as revision 1507 to svn://svn.ffmpeg.org/ffmpeg/trunk --- vhook/imlib2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vhook/imlib2.c') diff --git a/vhook/imlib2.c b/vhook/imlib2.c index 7da3586fee..64b1bae687 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -112,10 +112,10 @@ int Configure(void **ctxp, int argc, char *argv[]) font = optarg; break; case 't': - ci->text = strdup(optarg); + ci->text = av_strdup(optarg); break; case 'f': - ci->file = strdup(optarg); + ci->file = av_strdup(optarg); break; case 'x': ci->x = atoi(optarg); -- cgit v1.2.3