Commit 07d11275 by Oliver Matthews Committed by Stéphane Graber

Fix null derefence if attach is called without access to any tty

parent a6013704
...@@ -321,7 +321,7 @@ static int get_pty_on_host(struct lxc_container *c, struct wrapargs *wrap, int * ...@@ -321,7 +321,7 @@ static int get_pty_on_host(struct lxc_container *c, struct wrapargs *wrap, int *
err3: err3:
lxc_mainloop_close(&descr); lxc_mainloop_close(&descr);
err2: err2:
if (ts->sigfd != -1) if (ts && ts->sigfd != -1)
lxc_console_sigwinch_fini(ts); lxc_console_sigwinch_fini(ts);
err1: err1:
lxc_console_delete(&conf->console); lxc_console_delete(&conf->console);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment