Made clear that a freed pointer variable is not really used any more.

Coverity CID 17846.
This commit is contained in:
Thomas Schmitt 2015-10-15 11:53:56 +02:00
parent 79e6312397
commit da8ad0d2aa
1 changed files with 1 additions and 1 deletions

View File

@ -545,7 +545,7 @@ ex:;
if (path != NULL) if (path != NULL)
free(path); free(path);
if (names != NULL || value_lengths != NULL || values != NULL) if (names != NULL || value_lengths != NULL || values != NULL)
aaip_get_attr_list(path, &num_attrs, &names, &value_lengths, &values, aaip_get_attr_list(NULL, &num_attrs, &names, &value_lengths, &values,
1 << 15); /* free memory */ 1 << 15); /* free memory */
return ret; return ret;
} }