projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7d29af
)
Fixed issue with empty string in g_strsplit().
author
Daniel Carl
<danielcarl@gmx.de>
Mon, 27 May 2013 18:50:29 +0000
(20:50 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Mon, 27 May 2013 18:50:29 +0000
(20:50 +0200)
src/bookmark.c
patch
|
blob
|
history
diff --git
a/src/bookmark.c
b/src/bookmark.c
index
ab88aaf
..
4d3872b
100644
(file)
--- a/
src/bookmark.c
+++ b/
src/bookmark.c
@@
-62,7
+62,7
@@
GList *bookmark_get_by_tags(const char *tags)
char **parts;
unsigned int len;
- if (!tags) {
+ if (!tags
|| *tags == '\0'
) {
return NULL;
}