Opened 12 years ago

Last modified 10 years ago

#784 closed defect

confusing part_mode initialization — at Initial Version

Reported by: sorin Owned by:
Priority: minor Milestone: HM-13.0
Component: HM Version: HM-8.0
Keywords: part_mode Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

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.

Change History (0)

Note: See TracTickets for help on using tickets.

This list contains all users that will be notified about changes made to this ticket.

These roles will be notified: Reporter, Owner, Subscriber, Participant

  • David Flynn(Subscriber)
  • Frank Bossen(Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Participant, Always)
  • Sorin Cismas(Reporter)