summaryrefslogtreecommitdiffstats
path: root/src/sss_client/autofs
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-03-07 14:44:46 +0100
committerStephen Gallagher <sgallagh@redhat.com>2012-03-08 08:09:56 -0500
commitbd72b3510105599b5bdaf00c203df1164b304238 (patch)
tree05d2518aa8c287c20c312a621de95c2a5c5ca83b /src/sss_client/autofs
parent1c383994ae898fa862f93c43501395bae6304f28 (diff)
downloadsssd-bd72b3510105599b5bdaf00c203df1164b304238.tar.gz
sssd-bd72b3510105599b5bdaf00c203df1164b304238.tar.xz
sssd-bd72b3510105599b5bdaf00c203df1164b304238.zip
Only free returned values on success
https://fedorahosted.org/sssd/ticket/1237
Diffstat (limited to 'src/sss_client/autofs')
-rw-r--r--src/sss_client/autofs/autofs_test_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sss_client/autofs/autofs_test_client.c b/src/sss_client/autofs/autofs_test_client.c
index 6e95c1749..386c890c6 100644
--- a/src/sss_client/autofs/autofs_test_client.c
+++ b/src/sss_client/autofs/autofs_test_client.c
@@ -79,9 +79,9 @@ int main(int argc, const char *argv[])
ret = _sss_getautomntent_r(&key, &value, ctx);
if (ret == 0) {
printf("key: %s\t\tvalue: %s\n", key, value);
+ free(key);
+ free(value);
}
- free(key);
- free(value);
} while(ret == 0);
if (ret != 0 && ret != ENOENT) {
@@ -99,8 +99,8 @@ int main(int argc, const char *argv[])
exit(EXIT_FAILURE);
} else {
printf("key: %s\t\tvalue: %s\n", pc_key, value);
+ free(value);
}
- free(value);
}
ret = _sss_endautomntent(&ctx);