From 245ef066989feff7c13ce9e90e22adeb015730cf Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 26 Dec 2016 00:27:33 +0000 Subject: [Fix] Fix out of bounds access --- src/libutil/str_util.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/libutil/str_util.c b/src/libutil/str_util.c index 7b65f53a7..3b3dc06b7 100644 --- a/src/libutil/str_util.c +++ b/src/libutil/str_util.c @@ -1936,6 +1936,7 @@ decode: if (G_LIKELY (*p == '=')) { p ++; /* Skip comparison, as we know that we have found match */ + remain --; goto decode; } else { -- cgit v1.2.3