diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-29 14:34:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-29 14:34:30 +0300 |
commit | 48b017b41c8e045bee30d17470db6f547682e4c5 (patch) | |
tree | 9aa930cd8bbc4798d3d05f8cea857fbb6ab0506e | |
parent | c9673032ff9fb5b5c1a223432181d60184685d5a (diff) | |
download | evol-hercules-48b017b41c8e045bee30d17470db6f547682e4c5.tar.gz evol-hercules-48b017b41c8e045bee30d17470db6f547682e4c5.tar.bz2 evol-hercules-48b017b41c8e045bee30d17470db6f547682e4c5.tar.xz evol-hercules-48b017b41c8e045bee30d17470db6f547682e4c5.zip |
Fix wrong return.
-rw-r--r-- | src/ecommon/utils/strutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecommon/utils/strutil.c b/src/ecommon/utils/strutil.c index d782b0a..7862777 100644 --- a/src/ecommon/utils/strutil.c +++ b/src/ecommon/utils/strutil.c @@ -46,7 +46,7 @@ struct strutil_data *strutil_split(const char *str, void strutil_free(struct strutil_data *data) { if (!data) - return NULL; + return; VECTOR_CLEAR(data->parts); aFree(data->str); aFree(data); |