From 778020f1e368bdb8532c6c430727d7959d3a2454 Mon Sep 17 00:00:00 2001 From: Nolan Lum Date: Thu, 16 Dec 2010 20:26:32 -0500 Subject: [PATCH] Add missing PMC destroy call. --- t/src/embed/pmc.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/src/embed/pmc.t b/t/src/embed/pmc.t index 9296de1579..ffaae709c9 100644 --- a/t/src/embed/pmc.t +++ b/t/src/embed/pmc.t @@ -124,6 +124,7 @@ int main(int argc, char* argv[]) Parrot_pmc_destroy(interp, p_str); Parrot_pmc_destroy(interp, p_keyedstr); + Parrot_pmc_destroy(interp, p_idx); Parrot_pmc_destroy(interp, interpmc); return 0;