﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
784	confusing part_mode initialization	sorin		"{{{
static const UChar 
INIT_PART_SIZE[3][NUM_PART_SIZE_CTX] =   
{
  { 154,  139,  CNU,  CNU, },  
  { 154,  139,  CNU,  CNU, },  
  { 184,  CNU,  CNU,  CNU, },  
};
}}}
binIdx=2 is used. Should be:
{{{
static const UChar 
INIT_PART_SIZE[3][NUM_PART_SIZE_CTX] =   
{
  { 154,  139,  154,  CNU, },  
  { 154,  139,  154,  CNU, },  
  { 184,  CNU,  CNU,  CNU, },  
};
}}}
CNU happens to be 154, so functionally it is correct, just confusing.
"	defect	closed	minor	HM-13.0	HM	HM-8.0	fixed	part_mode	fbossen ksuehring davidf jct-vc@…
