commit | 2449b39ca1be6c1846c297529709456a12aaf829 | [log] [tgz] |
---|---|---|
author | Radek Krejci <rkrejci@cesnet.cz> | Tue Apr 25 09:37:16 2017 +0200 |
committer | Radek Krejci <rkrejci@cesnet.cz> | Tue Apr 25 09:37:16 2017 +0200 |
tree | d4d7be04f344ed97e1de2df81f8fee5779c4ca2f | |
parent | 3a866cd565d61458421011afaa8cdaa43f51e3fb [diff] [blame] |
YIN parser BUGFIX uninitialized variable
diff --git a/src/parser_yin.c b/src/parser_yin.c index 982a2f2..86a78de 100644 --- a/src/parser_yin.c +++ b/src/parser_yin.c
@@ -1890,7 +1890,7 @@ { int i, j, ret = EXIT_FAILURE; const char *orig; - char *value, *vaux, *start, c; + char *value, *vaux, *start = NULL, c; struct unres_list_uniq *unique_info; /* get unique value (list of leafs supposed to be unique */