Fix uninitialised header in the builder.

This commit is contained in:
Ryan Lortie 2010-04-16 11:04:15 -04:00
parent 3c10369bf6
commit caad55d726

View File

@ -474,7 +474,7 @@ static GString *
file_builder_serialise (FileBuilder *fb,
struct gvdb_pointer root)
{
struct gvdb_header header;
struct gvdb_header header = { { 0, }, };
GString *result;
if (fb->byteswap)