May 4, 2026
11:33 a.m.
Jacek Caban (@jacek) commented about dlls/oleaut32/variant.c:
+ if (leftvt == VT_NULL && rightvt == VT_NULL) + { + V_VT(result) = VT_NULL; + goto VarAnd_Exit; + } + if (leftvt == VT_NULL) + { + other = right; + othervt = rightvt; + } + else + { + other = left; + othervt = leftvt; + } It would be nice to have test cases showing that this should be symmetrical.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10673#note_138753