Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
60521699
Commit
60521699
authored
Sep 27, 2010
by
Sebastian Ramacher
Browse files
fix a memory leak
parent
b280852f
Changes
1
Hide whitespace changes
Inline
Side-by-side
zathura.c
View file @
60521699
...
...
@@ -3415,7 +3415,9 @@ cmd_open(int argc, char** argv)
filepath
=
g_string_append
(
filepath
,
argv
[
i
]);
}
return
open_file
(
filepath
->
str
,
NULL
);
gboolean
res
=
open_file
(
filepath
->
str
,
NULL
);
g_string_free
(
filepath
,
TRUE
);
return
res
;
}
gboolean
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment