check sandbox cleanup

This commit is contained in:
valoq 2018-05-25 21:05:41 +02:00
parent 346536564b
commit 193b825ddd
Failed to generate hash of commit

View file

@ -532,14 +532,10 @@ cmd_exec(girara_session_t* session, girara_list_t* argument_list)
g_return_val_if_fail(session->global.data != NULL, false);
zathura_t* zathura = session->global.data;
char* sandbox = NULL;
girara_setting_get(zathura->ui.session, "sandbox", &sandbox);
if (g_strcmp0(sandbox, "strict") == 0) {
if (zathura->global.sandbox == ZATHURA_SANDBOX_STRICT) {
girara_notify(zathura->ui.session, GIRARA_ERROR, _("Exec is not permitted in strict sandbox mode"));
g_free(sandbox);
return false;
}
g_free(sandbox);
if (zathura->document != NULL) {
const char* path = zathura_document_get_path(zathura->document);