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
67d1131b
Commit
67d1131b
authored
Apr 29, 2016
by
Sebastian Ramacher
Browse files
Fix infinite loop on NULL
Signed-off-by:
Sebastian Ramacher
<
sebastian+dev@ramacher.at
>
parent
2805cf1f
Pipeline
#132
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
zathura/completion.c
View file @
67d1131b
...
...
@@ -294,11 +294,11 @@ cc_bookmarks(girara_session_t* session, const char* input)
error_free:
if
(
completion
)
{
if
(
completion
!=
NULL
)
{
girara_completion_free
(
completion
);
}
if
(
group
)
{
if
(
group
!=
NULL
)
{
girara_completion_group_free
(
group
);
}
...
...
zathura/marks.c
View file @
67d1131b
...
...
@@ -160,6 +160,7 @@ cmd_marks_delete(girara_session_t* session, girara_list_t* argument_list)
GIRARA_LIST_FOREACH
(
argument_list
,
char
*
,
iter
,
key_string
)
if
(
key_string
==
NULL
)
{
girara_list_iterator_next
(
iter
);
continue
;
}
...
...
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