]> granicus.if.org Git - neomutt/commitdiff
remove unused Buffer in cs_inherit_variable()
authorRichard Russon <rich@flatcap.org>
Fri, 12 Apr 2019 10:36:26 +0000 (11:36 +0100)
committerRichard Russon <rich@flatcap.org>
Tue, 16 Apr 2019 10:03:20 +0000 (11:03 +0100)
config/set.c

index 78852118ba39e4c013ae60111d93461486180fcd..c48c525fa6a4c9435291468df434a0755a0b40e0 100644 (file)
@@ -296,11 +296,6 @@ struct HashElem *cs_inherit_variable(const struct ConfigSet *cs,
   if (!cs || !parent)
     return NULL; /* LCOV_EXCL_LINE */
 
-  struct Buffer err;
-  mutt_buffer_init(&err);
-  err.dsize = 256;
-  err.data = calloc(1, err.dsize);
-
   struct Inheritance *i = mutt_mem_calloc(1, sizeof(*i));
   i->parent = parent;
   i->name = mutt_str_strdup(name);
@@ -312,7 +307,6 @@ struct HashElem *cs_inherit_variable(const struct ConfigSet *cs,
     FREE(&i);
   }
 
-  FREE(&err.data);
   return he;
 }