Release unused memory in parse_quote_2047()
authorJeremy Harris <jgh146exb@wizmail.org>
Fri, 10 Jul 2020 21:49:56 +0000 (22:49 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Fri, 10 Jul 2020 21:49:56 +0000 (22:49 +0100)
src/src/parse.c

index acece9b782aed90045eed3fe44b699655a1eb258..2b2ffd34129ad0e4aaabaf74ed98b493040f3285 100644 (file)
@@ -904,8 +904,13 @@ for (s = string; len > 0; s++, len--)
     { g = string_catn(g, s, 1); first_byte = FALSE; }
   }
 
-g = string_catn(g, US"?=", 2);
-return coded ? string_from_gstring(g) : string;
+if (coded)
+  string = string_from_gstring(g = string_catn(g, US"?=", 2));
+else
+  g->ptr = -1;
+
+gstring_release_unused(g);
+return string;
 }