On 12/06/2012 12:48 PM, Kelly O'Hair wrote:
Need reviewer.
I was asked to look at some Parfait errors in hprof code:
7176138: Fixes for missing close() calls and possible null pointer reference
instead of fatal error
http://cr.openjdk.java.net/~ohair/openjdk8/parfait_hprof_fixes/webrev/
hprof_table.c
211 if ( ltable->info_size == 0 ) {
212 HPROF_ERROR(JNI_TRUE, "Table is empty and should never be.");
213 return NULL;
It is not obvious this should be a fatal error. Elsewhere this is
handled as an assert.
David