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

index 72abb3db994e1121af48844197983a6004a49e18..42586d8d2984baa2982ef93d3690561e1c04ca37 100644 (file)
@@ -243,7 +243,7 @@ void loadfilters(void) {
 
   while ((dent = readdir(dir)) != NULL) {
     struct stat statbuf;
-    char *file = malloc(strlen(dirname) + 1 + strlen(dent->d_name) + 1);
+    char *file = m_malloc(strlen(dirname) + 1 + strlen(dent->d_name) + 1);
     if (!file)
       ohshite(_("Error allocating memory for file"));
     sprintf(file, "%s/%s", dirname, dent->d_name);