From 059eeabf35f866415d91ff2b5829d8ab2e7f43f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Tue, 10 Jul 2007 21:43:35 +0000 Subject: [PATCH] 10l: fix av_str[i]start() Originally committed as revision 9585 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/string.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavutil/string.c b/libavutil/string.c index 20f89c703..2f4de8ef5 100644 --- a/libavutil/string.c +++ b/libavutil/string.c @@ -25,7 +25,10 @@ int av_strstart(const char *str, const char *pfx, const char **ptr) { - while (*pfx && *pfx++ == *str++); + while (*pfx && *pfx == *str) { + pfx++; + str++; + } if (!*pfx && ptr) *ptr = str; return !*pfx; @@ -33,7 +36,10 @@ int av_strstart(const char *str, const char *pfx, const char **ptr) int av_stristart(const char *str, const char *pfx, const char **ptr) { - while (*pfx && toupper((unsigned)*pfx++) == toupper((unsigned)*str++)); + while (*pfx && toupper((unsigned)*pfx) == toupper((unsigned)*str)) { + pfx++; + str++; + } if (!*pfx && ptr) *ptr = str; return !*pfx; -- 2.11.0