]> git.sur5r.net Git - openldap/commitdiff
cleanup
authorHoward Chu <hyc@openldap.org>
Fri, 31 Mar 2006 21:31:32 +0000 (21:31 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 31 Mar 2006 21:31:32 +0000 (21:31 +0000)
libraries/libldap/utf-8-conv.c

index 14cd89e49452e49e9ee02a291c172dc87dae6215..e1ffe3c67b66478b134c6d81a75031e4c74ea462 100644 (file)
@@ -129,8 +129,8 @@ ldap_x_utf8s_to_wcs ( wchar_t *wcstr, const char *utf8str, size_t count )
        wchar_t ch;
 
 
-       /* If input ptr is NULL, treat it as empty string. */
-       if (utf8str == NULL) {
+       /* If input ptr is NULL or empty... */
+       if (utf8str == NULL || !*utf8str) {
                if ( wcstr )
                        *wcstr = 0;
                return 0;