diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-16 10:36:21 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-09-16 12:02:56 -0700 |
commit | ae483bbe9af526623189cefe7735f3f2813da6d7 (patch) | |
tree | d3c5bc537b8fb55c2d4e97db7ee2945385c8f9ca /source3 | |
parent | 0730d982e68bacbb89584ee8297c6e275955b7c4 (diff) | |
download | samba-ae483bbe9af526623189cefe7735f3f2813da6d7.tar.gz samba-ae483bbe9af526623189cefe7735f3f2813da6d7.tar.xz samba-ae483bbe9af526623189cefe7735f3f2813da6d7.zip |
s3: Wrap the ntlm_auth loop with a talloc_stackframe
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 38ed9f7c9bb..5b0bc20095a 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -2319,7 +2319,9 @@ static void squid_stream(enum stdio_helper_mode stdio_mode, stdio_helper_functio state->helper_mode = stdio_mode; while(1) { + TALLOC_CTX *frame = talloc_stackframe(); manage_squid_request(state, fn); + TALLOC_FREE(frame); } } |