diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-10-25 14:26:21 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-10-31 08:03:28 -0400 |
commit | 71829db25d6a0beb63066d912702ac1b7787dbe2 (patch) | |
tree | fda199f307de7c4d1b057ce75ae05fcd21f00750 | |
parent | 53b61a2c5132a479b4ef7b0d944e2983b7d5e6c9 (diff) | |
download | sssd-71829db25d6a0beb63066d912702ac1b7787dbe2.tar.gz sssd-71829db25d6a0beb63066d912702ac1b7787dbe2.tar.bz2 sssd-71829db25d6a0beb63066d912702ac1b7787dbe2.zip |
Do not leak hash table iterator during proxy auth
-rw-r--r-- | src/providers/proxy/proxy_auth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/providers/proxy/proxy_auth.c b/src/providers/proxy/proxy_auth.c index cd291782..8088283f 100644 --- a/src/providers/proxy/proxy_auth.c +++ b/src/providers/proxy/proxy_auth.c @@ -796,6 +796,7 @@ static void run_proxy_child_queue(struct tevent_context *ev, break; } } + free(iter); if (!entry) { /* Nothing pending on the queue */ |