Jacek Caban : oleaut32: Handle VT_R4 in RecordClear ( spotted by Konrad Rzepecki).
Module: wine Branch: master Commit: e14ba15e0eaeb3e0a14a838350cf257d57bf7b35 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e14ba15e0eaeb3e0a14a838350... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Wed Apr 23 17:10:03 2008 +0200 oleaut32: Handle VT_R4 in RecordClear (spotted by Konrad Rzepecki). --- dlls/oleaut32/recinfo.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/oleaut32/recinfo.c b/dlls/oleaut32/recinfo.c index 5b58fc6..61f6554 100644 --- a/dlls/oleaut32/recinfo.c +++ b/dlls/oleaut32/recinfo.c @@ -216,6 +216,7 @@ static HRESULT WINAPI IRecordInfoImpl_RecordClear(IRecordInfo *iface, PVOID pvEx break; case VT_I2: case VT_I4: + case VT_R4: case VT_R8: case VT_CY: case VT_DATE:
participants (1)
-
Alexandre Julliard