]> granicus.if.org Git - php/commitdiff
Use the correct free() here...
authorWez Furlong <wez@php.net>
Sun, 19 Sep 2004 22:20:55 +0000 (22:20 +0000)
committerWez Furlong <wez@php.net>
Sun, 19 Sep 2004 22:20:55 +0000 (22:20 +0000)
ext/com_dotnet/com_iterator.c

index 4569023221aa1ba74a60353cecc35247be0476e8..c179b56721641d3cbe6232f260421e938276a826 100644 (file)
@@ -232,7 +232,7 @@ fail:
        if (I) {
                VariantClear(&I->safe_array);
                VariantClear(&I->v);
-               free(I);
+               efree(I);
        }
        return NULL;
 }