ucimap: fix a memory leak (patch by Stanislav Fomichev)
[project/uci.git] / ucimap.c
index 0bc31c58601dbee9bbbfdc75dde2dc65c70b8fea..7af7f635af45dca8d19b61f81ac94de47fdee530 100644 (file)
--- a/ucimap.c
+++ b/ucimap.c
@@ -712,6 +712,8 @@ ucimap_parse_section(struct uci_map *map, struct uci_sectionmap *sm, struct ucim
        return 0;
 
 error_mem:
+       if (sd->alloc_custom)
+               free(sd->alloc_custom);
        if (sd->allocmap)
                free(sd->allocmap);
        free(sd);