< prev index next >

src/share/vm/asm/codeBuffer.cpp

Print this page
rev 8847 : 8140482: Various minor code improvements (runtime)
Reviewed-by: dholmes, coleenp, sspitsyn, dsamersoff

*** 856,865 **** --- 856,866 ---- } } // Figure new capacity for each section. csize_t new_capacity[SECT_LIMIT]; + memset(new_capacity, 0, sizeof(csize_t) * SECT_LIMIT); csize_t new_total_cap = figure_expanded_capacities(which_cs, amount, new_capacity); // Create a new (temporary) code buffer to hold all the new data CodeBuffer cb(name(), new_total_cap, 0);
< prev index next >