hhctrl.ocx: Free the correct buffer (Coverity).

This commit is contained in:
Marcus Meissner 2014-03-08 10:00:53 +01:00 committed by Alexandre Julliard
parent 3fa41c9e70
commit 0d00e16327
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ BOOL next_node(stream_t *stream, strbuf_t *buf)
strbuf_init(&tmpbuf);
if(!find_node_end(stream, &tmpbuf))
{
strbuf_free(buf);
strbuf_free(&tmpbuf);
return FALSE;
}
strbuf_free(&tmpbuf);