summaryrefslogtreecommitdiffstats
path: root/libavutil/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/string.c')
-rw-r--r--libavutil/string.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/libavutil/string.c b/libavutil/string.c
index 20f89c7..2f4de8e 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;
OpenPOWER on IntegriCloud