Commit e219087c authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

rpcrt4/tests: Free memory from one of the tests.

parent 61862f9f
...@@ -760,6 +760,7 @@ free_pyramid_doub_carr(doub_carr_t *dc) ...@@ -760,6 +760,7 @@ free_pyramid_doub_carr(doub_carr_t *dc)
int i; int i;
for (i = 0; i < dc->n; ++i) for (i = 0; i < dc->n; ++i)
MIDL_user_free(dc->a[i]); MIDL_user_free(dc->a[i]);
MIDL_user_free(dc);
} }
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment