diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2013-08-15 22:39:55 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2013-08-15 23:17:54 +0400 |
commit | 0c38feb8c00e11b57233d3029230d17a0237b9a5 (patch) | |
tree | f25429197381cc7bbbeb2066b2362c264d468119 | |
parent | ceb6d69bc2c2ad668bd31e1562af5bb784005455 (diff) | |
download | accel-ppp-0c38feb8c00e11b57233d3029230d17a0237b9a5.tar.gz accel-ppp-0c38feb8c00e11b57233d3029230d17a0237b9a5.zip |
triton: do not call context close if it is marked as need free (f.e. context already called triton_context_unregister)
-rw-r--r-- | accel-pppd/triton/triton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/triton/triton.c b/accel-pppd/triton/triton.c index 6163b0af..f17ae316 100644 --- a/accel-pppd/triton/triton.c +++ b/accel-pppd/triton/triton.c @@ -229,7 +229,7 @@ static void ctx_thread(struct _triton_context_t *ctx) } spin_lock(&ctx->lock); - if (ctx->need_close) { + if (ctx->need_close && !ctx->need_free) { spin_unlock(&ctx->lock); if (ctx->ud->close) { ctx->ud->close(ctx->ud); |