diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-23 01:33:50 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-23 02:09:51 +0200 |
commit | 7c028e224978e1d5a4f207cc42b9eb58d81897dd (patch) | |
tree | d7165e3b9d1a7041cd79712526ad472c21135bdc /lib/sqfs/write_export_table.c | |
parent | 0a5383ccdf8e87d2259d02a9ff44420b3bc3f58d (diff) |
Some simple search/replace cases for allocation
This commit exchanges some malloc(x + y * z) patterns that can be found
with a simple git grep and are obvious for the new wrappers.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/write_export_table.c')
-rw-r--r-- | lib/sqfs/write_export_table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqfs/write_export_table.c b/lib/sqfs/write_export_table.c index a4ba1b7..f81632a 100644 --- a/lib/sqfs/write_export_table.c +++ b/lib/sqfs/write_export_table.c @@ -7,6 +7,7 @@ #include "config.h" #include "highlevel.h" +#include "util.h" #include <stdlib.h> #include <stdio.h> |