Commit 7dba7d31 authored by Fabian Cenedese's avatar Fabian Cenedese Committed by Alexandre Julliard

No sign extension for negative values.

parent 8cdcbbb3
...@@ -5238,7 +5238,7 @@ HRESULT WINAPI VarBstrFromI4(LONG lIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut) ...@@ -5238,7 +5238,7 @@ HRESULT WINAPI VarBstrFromI4(LONG lIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
if (lIn < 0) if (lIn < 0)
{ {
ul64 = -lIn; ul64 = (ULONG)-lIn;
dwFlags |= VAR_NEGATIVE; dwFlags |= VAR_NEGATIVE;
} }
return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut); return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut);
......
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