diff options
author | Denys Vlasenko | 2015-08-25 21:47:33 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-08-25 21:47:33 +0200 |
commit | 68acc0f835360d439c65d349812b817b1ce5dc61 (patch) | |
tree | 28ab6ca95fe7078aed334c8675909d2c4d296318 /libbb | |
parent | 7448b513c84feb3fd06fc57b39f5ab450970c01e (diff) | |
download | busybox-68acc0f835360d439c65d349812b817b1ce5dc61.zip busybox-68acc0f835360d439c65d349812b817b1ce5dc61.tar.gz |
libbb: make is_suffixed_with() return pointer inside string, not key.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/compare_string_array.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c index e0d8e42..3dbd3eb 100644 --- a/libbb/compare_string_array.c +++ b/libbb/compare_string_array.c @@ -39,8 +39,9 @@ char* FAST_FUNC is_suffixed_with(const char *string, const char *key) ssize_t len_diff = strlen(string) - key_len; if (len_diff >= 0) { - if (strcmp(string + len_diff, key) == 0) { - return (char*)key; + string += len_diff; + if (strcmp(string, key) == 0) { + return (char*)string; } } |