]> git.proxmox.com Git - lxc.git/blame - debian/patches/0001-conf-set-pty_info-to-NULL-after-free.patch
use new repoman for upload target
[lxc.git] / debian / patches / 0001-conf-set-pty_info-to-NULL-after-free.patch
CommitLineData
c6af9a11
WB
1From e00c024230e457a0f37ea5c90bd8caac0c30020e Mon Sep 17 00:00:00 2001
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Thu, 28 Jul 2016 11:52:18 +0200
4Subject: [PATCH] conf: set pty_info to NULL after free
5
6This fixes a double free corruption on container-requested
7reboots when lxc_spawn() fails before receiving the ttys, as
8lxc_fini() (part of __lxc_start()'s cleanup) calls
9lxc_delete_tty().
10
11Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
12---
13 src/lxc/conf.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/src/lxc/conf.c b/src/lxc/conf.c
17index 48a2978..1e330ac 100644
18--- a/src/lxc/conf.c
19+++ b/src/lxc/conf.c
20@@ -3327,6 +3327,7 @@ void lxc_delete_tty(struct lxc_tty_info *tty_info)
21 }
22
23 free(tty_info->pty_info);
24+ tty_info->pty_info = NULL;
25 tty_info->nbtty = 0;
26 }
27
28--
292.1.4
30