mshtml: Use heap_alloc_zero to allocate OmNavigator.

oldstable
Jacek Caban 2008-06-18 17:05:23 -05:00 committed by Alexandre Julliard
parent 590b185e3a
commit 0cb99eef5a
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ IOmNavigator *OmNavigator_Create(void)
{
OmNavigator *ret;
ret = heap_alloc(sizeof(*ret));
ret = heap_alloc_zero(sizeof(*ret));
ret->lpIOmNavigatorVtbl = &OmNavigatorVtbl;
ret->ref = 1;