diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-12 09:53:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-12 09:53:02 (GMT) |
commit | 9f1fbd9d729056b624edea563b4cab8e58128b52 (patch) | |
tree | 2923f51ecc9cbf86bcd8af7bb96b213c0fee7c3a /src/arch | |
parent | eaf46c79d5b1db06f1f1f7da17a37ec007af2d92 (diff) |
Fixed some memory leaks.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/register.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/register.c b/src/arch/register.c index 6194a28..0033071 100644 --- a/src/arch/register.c +++ b/src/arch/register.c @@ -321,6 +321,7 @@ static void g_register_operand_class_init(GRegisterOperandClass *klass) static void g_register_operand_init(GRegisterOperand *operand) { + operand->reg = NULL; operand->is_written = false; } @@ -340,7 +341,8 @@ static void g_register_operand_init(GRegisterOperand *operand) static void g_register_operand_dispose(GRegisterOperand *operand) { - g_object_unref(G_OBJECT(operand->reg)); + if (operand->reg != NULL) + g_object_unref(G_OBJECT(operand->reg)); G_OBJECT_CLASS(g_register_operand_parent_class)->dispose(G_OBJECT(operand)); |