Преглед изворни кода

Don't leak memory reading REG_SZ values.

Iain Patterson пре 13 година
родитељ
комит
e200c1086d
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      registry.cpp

+ 1 - 0
registry.cpp

@@ -124,6 +124,7 @@ int expand_parameter(HKEY key, char *value, char *data, unsigned long datalen) {
   /* Technically we shouldn't expand environment strings from REG_SZ values */
   if (type != REG_EXPAND_SZ) {
     memmove(data, buffer, buflen);
+    HeapFree(GetProcessHeap(), 0, buffer);
     return 0;
   }