bugfix: irq: Avoid covering object refcount of qemu_irq
Avoid covering object refcount of qemu_irq, otherwise it may causes memory leak. Signed-off-by: Keqian Zhu <zhukeqian1@huawei.com>
This commit is contained in:
parent
69b0de9c52
commit
78e85fa40c
32
bugfix-irq-Avoid-covering-object-refcount-of-qemu_ir.patch
Normal file
32
bugfix-irq-Avoid-covering-object-refcount-of-qemu_ir.patch
Normal file
@ -0,0 +1,32 @@
|
||||
From 32353a7838f9ff38c5bd768252a79bd8e485658b Mon Sep 17 00:00:00 2001
|
||||
From: Keqian Zhu <zhukeqian1@huawei.com>
|
||||
Date: Mon, 27 Jul 2020 20:39:07 +0800
|
||||
Subject: [PATCH] bugfix: irq: Avoid covering object refcount of qemu_irq
|
||||
|
||||
Avoid covering object refcount of qemu_irq, otherwise it may causes
|
||||
memory leak.
|
||||
|
||||
Signed-off-by: Keqian Zhu <zhukeqian1@huawei.com>
|
||||
---
|
||||
hw/core/irq.c | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/hw/core/irq.c b/hw/core/irq.c
|
||||
index 8a9cbdd556..700a6373d8 100644
|
||||
--- a/hw/core/irq.c
|
||||
+++ b/hw/core/irq.c
|
||||
@@ -126,7 +126,10 @@ void qemu_irq_intercept_in(qemu_irq *gpio_in, qemu_irq_handler handler, int n)
|
||||
int i;
|
||||
qemu_irq *old_irqs = qemu_allocate_irqs(NULL, NULL, n);
|
||||
for (i = 0; i < n; i++) {
|
||||
- *old_irqs[i] = *gpio_in[i];
|
||||
+ old_irqs[i]->handler = gpio_in[i]->handler;
|
||||
+ old_irqs[i]->opaque = gpio_in[i]->opaque;
|
||||
+ old_irqs[i]->n = gpio_in[i]->n;
|
||||
+
|
||||
gpio_in[i]->handler = handler;
|
||||
gpio_in[i]->opaque = &old_irqs[i];
|
||||
}
|
||||
--
|
||||
2.27.0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user