Browse Source

[Fix] Fix memory leak in parsing comments

tags/1.7.6
Vsevolod Stakhov 6 years ago
parent
commit
87162d5b1c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      contrib/libucl/ucl_util.c

+ 2
- 2
contrib/libucl/ucl_util.c View File

@@ -2406,11 +2406,11 @@ ucl_object_insert_key_common (ucl_object_t *top, ucl_object_t *elt,
}
else {
/* Just make a list of scalars */
DL_APPEND (found, elt);
DL_CONCAT (found, elt);
}
}
else {
DL_APPEND (found, elt);
DL_CONCAT (found, elt);
}
}


Loading…
Cancel
Save