diff options
Diffstat (limited to 'src/plugins/fs/search.c')
-rw-r--r-- | src/plugins/fs/search.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/fs/search.c b/src/plugins/fs/search.c index 916504a5..dcf513e1 100644 --- a/src/plugins/fs/search.c +++ b/src/plugins/fs/search.c | |||
@@ -551,8 +551,10 @@ void on_fssearchbutton_clicked_fs(gpointer dummy2, | |||
551 | } | 551 | } |
552 | FREE(ustring); | 552 | FREE(ustring); |
553 | } | 553 | } |
554 | FREENONNULL(descStr); | 554 | if (descStr != NULL) |
555 | FREENONNULL(ns); | 555 | free(descStr); |
556 | if (ns != NULL) | ||
557 | free(ns); | ||
556 | } | 558 | } |
557 | if (uri == NULL) | 559 | if (uri == NULL) |
558 | uri = ECRS_parseCharKeywordURI(ectx, searchString); | 560 | uri = ECRS_parseCharKeywordURI(ectx, searchString); |