Просмотр исходного кода

dpkg-query: Fix short-lived memory leak in --show and --list commands

Sponsored-by: Linaro Limited

Signed-off-by: Guillem Jover <guillem@debian.org>
Raphaël Hertzog лет назад: 15
Родитель
Сommit
c0058777f3
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      src/querycmd.c

+ 4 - 0
src/querycmd.c

@@ -247,6 +247,8 @@ listpackages(const char *const *argv)
         failures++;
       }
     }
+
+    free(found);
   }
 
   m_output(stdout, _("<standard output>"));
@@ -513,6 +515,8 @@ showpackages(const char *const *argv)
         failures++;
       }
     }
+
+    free(found);
   }
 
   m_output(stdout, _("<standard output>"));