From: John Snow <jsnow@redhat.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, jsnow@redhat.com
Subject: [Qemu-devel] [PULL v2 03/11] ahci-test: fix memory leak
Date: Mon, 11 Jan 2016 14:33:52 -0500 [thread overview]
Message-ID: <1452540840-23433-4-git-send-email-jsnow@redhat.com> (raw)
In-Reply-To: <1452540840-23433-1-git-send-email-jsnow@redhat.com>
Use the proper free command to detroy an AHCICommand.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1452282920-21550-2-git-send-email-jsnow@redhat.com
---
tests/ahci-test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/ahci-test.c b/tests/ahci-test.c
index 0888506..f4945dc 100644
--- a/tests/ahci-test.c
+++ b/tests/ahci-test.c
@@ -1045,14 +1045,14 @@ static void test_dma_fragmented(void)
ahci_command_commit(ahci, cmd, px);
ahci_command_issue(ahci, cmd);
ahci_command_verify(ahci, cmd);
- g_free(cmd);
+ ahci_command_free(cmd);
cmd = ahci_command_create(CMD_READ_DMA);
ahci_command_adjust(cmd, 0, ptr, bufsize, 32);
ahci_command_commit(ahci, cmd, px);
ahci_command_issue(ahci, cmd);
ahci_command_verify(ahci, cmd);
- g_free(cmd);
+ ahci_command_free(cmd);
/* Read back the guest's receive buffer into local memory */
bufread(ptr, rx, bufsize);
--
2.4.3
next prev parent reply other threads:[~2016-01-11 19:34 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-11 19:33 [Qemu-devel] [PULL v2 00/11] Ide patches John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 01/11] macio: fix overflow in lba to offset conversion for ATAPI devices John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 02/11] ide: ahci: reset ncq object to unused on error John Snow
2016-01-11 19:33 ` John Snow [this message]
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 04/11] libqos/ahci: ATAPI support John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 05/11] libqos/ahci: ATAPI identify John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 06/11] libqos/ahci: Switch to mutable properties John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 07/11] libqos: allow zero-size allocations John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 08/11] libqos/ahci: allow nondata commands for ahci_io variants John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 09/11] libqos/ahci: add ahci_exec John Snow
2016-01-11 19:33 ` [Qemu-devel] [PULL v2 10/11] qtest/ahci: ATAPI data tests John Snow
2016-01-11 19:34 ` [Qemu-devel] [PULL v2 11/11] libqos/ahci: organize header John Snow
2016-01-12 11:28 ` [Qemu-devel] [PULL v2 00/11] Ide patches Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1452540840-23433-4-git-send-email-jsnow@redhat.com \
--to=jsnow@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).