Skip to content
Snippets Groups Projects
Commit bf1c91b1 authored by Mark Valence's avatar Mark Valence
Browse files

Fix seg fault (test003).

parent 1566454e
No related branches found
No related tags found
No related merge requests found
......@@ -696,7 +696,7 @@ int escape_value(
assert( in );
assert( out );
out->bv_val = (char *) ch_malloc( in->bv_len * 3 ) + 1;
out->bv_val = (char *) ch_malloc( ( in->bv_len * 3 ) + 1 );
out->bv_len = 0;
#undef NIBBLE
......
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