From f00b77597f5469ca75bd0774614f38648bda5aac Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Mon, 27 May 2013 20:47:04 +0000 Subject: [PATCH] Avoid dangling reference at end of fs_cli Not that it really matters since we're returning to the OS momentarily at that point anyway. --- libs/esl/fs_cli.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c index 5a675f8b8a..56903b42e8 100644 --- a/libs/esl/fs_cli.c +++ b/libs/esl/fs_cli.c @@ -1640,6 +1640,7 @@ int main(int argc, char *argv[]) el_end(el); #endif esl_disconnect(&handle); + global_handle = NULL; thread_running = 0; return 0; }