Konstantin Kondratyuk : ole32: Add missed initialization of virtual function table.
Module: wine Branch: master Commit: eab89da812856da7b25f02316398d97dbe16052d URL: http://source.winehq.org/git/wine.git/?a=commit;h=eab89da812856da7b25f023163... Author: Konstantin Kondratyuk <kondratyuk(a)etersoft.ru> Date: Mon Mar 29 15:04:02 2010 +0400 ole32: Add missed initialization of virtual function table. --- dlls/ole32/storage32.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index e1ba8a3..9d36820 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -4854,6 +4854,7 @@ static StorageInternalImpl* StorageInternalImpl_Construct( * Initialize the virtual function table. */ newStorage->base.lpVtbl = &Storage32InternalImpl_Vtbl; + newStorage->base.pssVtbl = &IPropertySetStorage_Vtbl; newStorage->base.baseVtbl = &StorageInternalImpl_BaseVtbl; newStorage->base.openFlags = (openFlags & ~STGM_CREATE);
participants (1)
-
Alexandre Julliard