hhctrl.ocx: Don't return uninitialized stream.

This commit is contained in:
Juan Lang 2008-01-15 07:58:49 -08:00 committed by Alexandre Julliard
parent 0a2fda7020
commit 018117e6a3
1 changed files with 1 additions and 1 deletions

View File

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