Fix dll_count in mis.c

Mike McCormack mike at codeweavers.com
Wed Dec 7 12:41:27 CST 2005


Christian Gmeiner wrote:
> I think that we need to init dll_count with 0 to get DllCanUnloadNow 
> working correctly.

> -static LONG dll_count;
> +static LONG dll_count = 0;

Static variables should be initialized to zero by default.

Mike



More information about the wine-devel mailing list