Cosmetic change in function return value. Coverity CID 12570.

This commit is contained in:
Thomas Schmitt 2015-10-09 17:23:08 +02:00
parent e4750907e3
commit 379e223a5c
1 changed files with 1 additions and 1 deletions

View File

@ -2302,7 +2302,7 @@ int iso_clone_mem(char *in, char **out, size_t size)
if (*out == NULL)
return ISO_OUT_OF_MEM;
memcpy(*out, in, size);
return 1;
return ISO_SUCCESS;
}