"Vitaliy Margolen" wine-devel@kievinfo.com wrote:
In all of your patch:
- if(!obj) return 0;
Please add space after "if" to make it consistent and more readable: if (!obj) return 0;
Actually it would be better to either completely remove that line, or even do an assert(obj != NULL) instead IMO.