Add missing return value.

SVN revision: 37528
This commit is contained in:
Sebastian Dransfeld 2008-11-07 06:50:45 +00:00
parent 7e2ccddb48
commit 4173b41de5
1 changed files with 1 additions and 1 deletions

View File

@ -977,7 +977,7 @@ eina_stringshare_ref(const char *str)
Eina_Stringshare_Node *node;
int slen;
if (!str) return;
if (!str) return NULL;
/* special cases */
if (str[0] == '\0') slen = 0;