Skip to content
Snippets Groups Projects
Commit 33757d62 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

knot1to2: fix unused variable if NDEBUG

parent 467303fe
No related branches found
No related tags found
No related merge requests found
......@@ -94,9 +94,11 @@ static char *path_relative_to(const char *filename, const char *reference)
return NULL;
}
int w;
w = snprintf(result, result_len, "%.*s/%s", path_len, reference, filename);
assert(w + 1 == (int)result_len);
int ret = snprintf(result, result_len, "%.*s/%s", path_len, reference, filename);
if (ret < 0 || ret >= result_len) {
free(result);
return NULL;
}
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment