id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,lang,patch,platform
1121,system.c trace_mem_block small bug,jessevdam,,"In system.c trace_mem_block is a small but nasty bug. Which could cause difficult to debug errors. 

 prefix = mask & buffer_min;

should become

 prefix = mask & (buffer_min < pmc_min ? buffer_min : pmc_min);

since the mask is also ditermined like

    const size_t mask       =
        find_common_mask(interp,
                    buffer_min < pmc_min ? buffer_min : pmc_min,
                    buffer_max > pmc_max ? buffer_max : pmc_max);
",bug,closed,normal,,GC,1.6.0,medium,invalid,memory stack gc,,,,all
