Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/windows/cpp/src/keymansentry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int keyman_sentry_init(bool is_keyman_developer, const char *logger) {
}

void keyman_sentry_shutdown() {
sentry_shutdown();
sentry_close();
free(g_logger);
g_logger = NULL;
}
Expand Down
4 changes: 2 additions & 2 deletions common/windows/delphi/ext/sentry/Sentry.Client.pas
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ destructor TSentryClient.Destroy;
begin
FInstance := nil;
if FSentryInit then
sentry_shutdown;
sentry_close;
FSentryInit := False;
if FVectoredExceptionHandler <> nil then
RemoveVectoredExceptionHandler(FVectoredExceptionHandler);
Expand All @@ -346,7 +346,7 @@ destructor TSentryClient.Destroy;
///
procedure TSentryClient.DoTerminate;
begin
sentry_shutdown;
sentry_close;
ExitProcess(1);
end;

Expand Down
Binary file modified common/windows/delphi/ext/sentry/crashpad_handler.exe
Binary file not shown.
Binary file modified common/windows/delphi/ext/sentry/sentry.dll
Binary file not shown.
Loading