blob: e3d524cd9e24422812f7868633ef83bcf2455647 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- image-vfat.c.orig 2023-01-06 18:01:33 UTC
+++ image-vfat.c
@@ -47,7 +47,7 @@ static int vfat_generate(struct image *image)
struct image *child = image_get(part->image);
const char *file = imageoutfile(child);
const char *target = part->name;
- char *path = strdupa(target);
+ char *path = strdup(target); // XXX causes memory leak
char *next = path;
while ((next = strchr(next, '/')) != NULL) {
|