Fix seg fault (test003).

This commit is contained in:
Mark Valence 2000-07-02 07:18:55 +00:00
parent 1566454e6e
commit bf1c91b165

View File

@ -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