Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

add a missing call to g_object_unref #356

Merged
merged 1 commit into from
Oct 15, 2013
Merged
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
1 change: 1 addition & 0 deletions appshell/appshell_extensions_gtk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ int32 MakeDir(ExtensionString path, int mode)
if (!g_file_make_directory(file, NULL, &gerror)) {
error = GErrorToErrorCode(gerror);
}
g_object_unref(file);

return error;
}
Expand Down