Quote:
Originally Posted by turk89
I am awaiting for your reply, Arg!
|
see above for your reply
Quote:
Originally Posted by Xterminator
That error is caused by geocity.inc, not the plugin itself. To fix it all you have to do is replace
Code:
CloseHandle( GeoCityQuery );
with
Code:
if( GeoCityQuery != INVALID_HANDLE )
{
CloseHandle( GeoCityQuery );
}
|
i originally had this in there, but it appears to be casuing the memory leak error someone else reported since its not closing the handle.
the error will need to be fixed by the creator of the include.
__________________