Hi Phil,

Please review a small fix for
bug: https://bugs.openjdk.java.net/browse/JDK-8151110
webrev: http://cr.openjdk.java.net/~psadhukhan/8151110/webrev.00/

where the issue was found that the allocation of memory was done through new operator but free was done through free(). Since they operate on different heaps and can pose problem if the code was to be run on new machine/compiler it's better to allocate through calloc for free() to delete memory correctly.
noreg-cleanup is added for this bug.

Regards
Prasanta

Reply via email to