Commit 018117e6 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

hhctrl.ocx: Don't return uninitialized stream.

parent 0a2fda70
......@@ -304,7 +304,7 @@ void SetChmPath(ChmPath *file, LPCWSTR base_file, LPCWSTR path)
IStream *GetChmStream(CHMInfo *info, LPCWSTR parent_chm, ChmPath *chm_file)
{
IStorage *storage;
IStream *stream;
IStream *stream = NULL;
HRESULT hres;
TRACE("%s (%s :: %s)\n", debugstr_w(parent_chm), debugstr_w(chm_file->chm_file),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment