1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s3: Wrap the ntlm_auth loop with a talloc_stackframe

This commit is contained in:
Volker Lendecke 2010-09-16 10:36:21 +02:00
parent 0730d982e6
commit ae483bbe9a

View File

@ -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);
}
}