Commit 2a406b92 authored by Martin Aumueller's avatar Martin Aumueller Committed by Matt Colyer

Apparently missing parens (with respect to string length calculation).

Signed-off-by: 's avatarMatt Colyer <matt@colyer.name>
parent db67cbb9
......@@ -71,7 +71,7 @@ char **read_dict_element_strings(xmlNode *dict) {
// one last thing...
old = return_me;
return_me = realloc(return_me, sizeof(char*) * current_length+1);
return_me = realloc(return_me, sizeof(char*) * (current_length+1));
return_me[current_pos] = strdup("");
return return_me;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment