I am running an old version of BoundsChecker but I noticed these:

Platform_Finalise()
        Does not free the library "Msimg32", need to add:

        if( hDLLImage )
        {
                ::FreeLibrary( hDLLImage );
                hDLLImage = NULL;
        }


RESearch does not initialise some memory, need to add to RESearch::Init:
        for (int k=0; k<MAXNFA; k++)
                nfa[k] = 0;


Theres also quite a few places where memory is not being initialised and
also a lot of memory leaks that I am still trying to track down.


Hope you find these useful, kind regards
Dan


_______________________________________________
Scintilla-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scintilla-interest

Reply via email to