Fix clonestr

This commit is contained in:
Mihailo Milenkovic
2018-10-31 15:58:32 +01:00
parent e88f0f9dfb
commit f51ee9a916

View File

@@ -139,7 +139,7 @@ long _stripwhite(char *buf,int accept)
char *clonestr(char *str)
{
char *clone;
if ( str == 0 || str[0] == 0 )
if ( str == 0)
{
printf("warning cloning nullstr.%p\n",str);
//#ifdef __APPLE__