mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 20:36:01 +01:00
Merge branch 'valoq/zathura-master' into develop
This commit is contained in:
commit
817a33b8fb
1 changed files with 5 additions and 0 deletions
|
@ -532,6 +532,11 @@ 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;
|
||||
|
||||
if (zathura->global.sandbox == ZATHURA_SANDBOX_STRICT) {
|
||||
girara_notify(zathura->ui.session, GIRARA_ERROR, _("Exec is not permitted in strict sandbox mode"));
|
||||
return false;
|
||||
}
|
||||
|
||||
if (zathura->document != NULL) {
|
||||
const char* path = zathura_document_get_path(zathura->document);
|
||||
|
||||
|
|
Loading…
Reference in a new issue