From 245ef066989feff7c13ce9e90e22adeb015730cf Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 26 Dec 2016 00:27:33 +0000 Subject: [PATCH] [Fix] Fix out of bounds access --- src/libutil/str_util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libutil/str_util.c b/src/libutil/str_util.c index 7b65f53a79..3b3dc06b70 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 { -- 2.47.3