Fix dead increment libr/util/utype.c

This commit is contained in:
Alexis Ehret 2021-01-11 22:15:57 +01:00 committed by pancake
parent 9683174a57
commit 78dc2b5b5f

View File

@ -619,7 +619,6 @@ R_API R_OWN char *r_type_func_guess(Sdb *TDB, R_NONNULL char *func_name) {
while (slen > 4 && (offset + 3 < slen) && str[offset + 3] == '.') {
offset += 4;
}
slen -= offset;
str += offset;
// strip common prefixes from standard lib functions
if (!strncmp (str, "__isoc99_", 9)) {