Closed GoogleCodeExporter closed 8 years ago
... and of course:
http://code.google.com/p/delphichromiumembedded/source/browse/trunk/ceflib.pas#3
319
finalization
if LibHandle <> 0 then
begin
cef_shutdown;
FreeLibrary(LibHandle);
end;
Original comment by krystian...@gmail.com
on 8 Aug 2010 at 5:40
Thank you
Original comment by hgourv...@gmail.com
on 16 Aug 2010 at 8:13
This two changes must be also applied (as in initial report), without this
program gets AV on cef_shutdown (finalization) if CEF wasn't used.
http://code.google.com/p/delphichromiumembedded/source/browse/trunk/ceflib.pas#2
845
var
LibHandle: THandle = 0; <---
procedure CefLoadLib(const cache: ustring);
begin
if LibHandle = 0 then <---
Original comment by krystian...@gmail.com
on 21 Aug 2010 at 11:29
Original issue reported on code.google.com by
krystian...@gmail.com
on 8 Aug 2010 at 5:38