duplicate the string for stdin support

This commit is contained in:
Sebastian Ramacher 2011-10-23 17:34:10 +02:00
parent 911d84c908
commit 49b682e0a8

View File

@ -352,8 +352,9 @@ document_info_open(gpointer data)
if (file == NULL) {
girara_notify(document_info->zathura->ui.session, GIRARA_ERROR,
"Could not read file from stdin and write it to a temporary file.");
} else {
document_info->zathura->stdin_support.file = g_strdup(file);
}
document_info->zathura->stdin_support.file = file;
} else {
file = g_strdup(document_info->path);
}