memory cleanup reorganized

This commit is contained in:
jmjatlanta 2016-11-02 13:44:56 -05:00
parent 0d8f599ac9
commit d30fa55af7
6 changed files with 26 additions and 0 deletions

View file

@ -16,6 +16,7 @@ int test_repo_config_init() {
int retVal = repo_config_init(&repoConfig, 2048, "/Users/JohnJones/.ipfs");
if (retVal == 0)
return 0;
// now tear it apart to check for anything broken
// addresses
@ -31,6 +32,8 @@ int test_repo_config_init() {
if (retVal != 0)
return 0;
repo_config_free(&repoConfig);
return 1;
}