From: Andy Green Date: Wed, 28 Jun 2017 03:21:03 +0000 (+0800) Subject: test-server-libuv: add missing call to lws_context_destroy2() X-Git-Tag: accepted/tizen/4.0/unified/20171012.191640~64 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Flibwebsockets.git;a=commitdiff_plain;h=0e222ab084f1715aa622cd3f2a98bb84ae370d21 test-server-libuv: add missing call to lws_context_destroy2() --- diff --git a/test-server/test-server-libuv.c b/test-server/test-server-libuv.c index cf8d755..bf6c90a 100644 --- a/test-server/test-server-libuv.c +++ b/test-server/test-server-libuv.c @@ -463,6 +463,7 @@ int main(int argc, char **argv) bail: lws_context_destroy(context); + lws_context_destroy2(context); } lwsl_notice("libwebsockets-test-server exited cleanly\n");