]> err.no Git - dpkg/commitdiff
Use m_malloc, not malloc
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:02:40 +0000 (10:02 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:02:40 +0000 (10:02 +0100)
lib/myopt.c

index 8a3003ae05a459ea47b1755ec22ca39287053d20..064ffeef54f8f4f59c142713c130b82db126cdf0 100644 (file)
@@ -186,7 +186,7 @@ void loadfilter(char *fn) {
   while (fgets(linebuf, sizeof(linebuf), file)) {
     struct filterlist *filter;
 
-    filter = malloc(sizeof(struct filterlist));
+    filter = m_malloc(sizeof(struct filterlist));
     if (!filter) {
       ohshite(_("Error allocating memory for filter entry"));
     }