Add missing null terminator before using byte-array contents as string.

Thanks to valgrind for spotting this one.
This commit is contained in:
Carl Worth 2009-10-14 15:55:07 -07:00
parent 7878175ed9
commit 27c01802c8

View file

@ -436,6 +436,7 @@ gen_terms_part (Xapian::TermGenerator term_gen,
g_object_unref (stream); g_object_unref (stream);
g_byte_array_append (byte_array, (guint8 *) "\0", 1);
body = (char *) g_byte_array_free (byte_array, FALSE); body = (char *) g_byte_array_free (byte_array, FALSE);
gen_terms_body_str (term_gen, body); gen_terms_body_str (term_gen, body);