v1.1b9
parent
f844ece677
commit
b1a42eb629
|
|
@ -1,5 +1,11 @@
|
||||||
NORM Version History
|
NORM Version History
|
||||||
|
|
||||||
|
Version 1.1b9
|
||||||
|
=============
|
||||||
|
- There have been a number of bug fixes since 1.1b3. This release
|
||||||
|
fixes a bug in NormBlockBuffer::Remove() and
|
||||||
|
NormObjectBuffer::Remove(). (Thanks Thava!)
|
||||||
|
|
||||||
Version 1.1b3
|
Version 1.1b3
|
||||||
=============
|
=============
|
||||||
- Started keeping version history. This release includes
|
- Started keeping version history. This release includes
|
||||||
|
|
|
||||||
|
|
@ -2524,7 +2524,7 @@ bool NormObjectTable::Remove(const NormObject* theObject)
|
||||||
offset++;
|
offset++;
|
||||||
if ((entry = table[i]))
|
if ((entry = table[i]))
|
||||||
{
|
{
|
||||||
NormObjectId id = (UINT16)index + offset;
|
NormObjectId id = (UINT16)objectId + offset;
|
||||||
while(entry && (entry->GetId() != id))
|
while(entry && (entry->GetId() != id))
|
||||||
{
|
{
|
||||||
if ((entry->GetId() > objectId) &&
|
if ((entry->GetId() > objectId) &&
|
||||||
|
|
@ -2560,7 +2560,7 @@ bool NormObjectTable::Remove(const NormObject* theObject)
|
||||||
offset++;
|
offset++;
|
||||||
if ((entry = table[i]))
|
if ((entry = table[i]))
|
||||||
{
|
{
|
||||||
NormObjectId id = (UINT16)index - offset;
|
NormObjectId id = (UINT16)objectId - offset;
|
||||||
//printf("Looking for id:%lu at index:%lu\n", (UINT16)transport_id, i);
|
//printf("Looking for id:%lu at index:%lu\n", (UINT16)transport_id, i);
|
||||||
while(entry && (entry->GetId() != id))
|
while(entry && (entry->GetId() != id))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -856,7 +856,8 @@ bool NormBlockBuffer::Remove(const NormBlock* theBlock)
|
||||||
offset++;
|
offset++;
|
||||||
if ((entry = table[i]))
|
if ((entry = table[i]))
|
||||||
{
|
{
|
||||||
NormBlockId id = (UINT32)index + offset;
|
//NormBlockId id = (UINT32)index + offset;
|
||||||
|
NormBlockId id = (UINT32)blockId + offset;
|
||||||
while(entry && (entry->GetId() != id))
|
while(entry && (entry->GetId() != id))
|
||||||
{
|
{
|
||||||
if ((entry->GetId() > blockId) &&
|
if ((entry->GetId() > blockId) &&
|
||||||
|
|
@ -892,7 +893,8 @@ bool NormBlockBuffer::Remove(const NormBlock* theBlock)
|
||||||
offset++;
|
offset++;
|
||||||
if ((entry = table[i]))
|
if ((entry = table[i]))
|
||||||
{
|
{
|
||||||
NormBlockId id = (UINT32)index - offset;
|
//NormBlockId id = (UINT32)index - offset;
|
||||||
|
NormBlockId id = (UINT32)blockId - offset;
|
||||||
//printf("Looking for id:%lu at index:%lu\n", (UINT32)id, i);
|
//printf("Looking for id:%lu at index:%lu\n", (UINT32)id, i);
|
||||||
while(entry && (entry->GetId() != id))
|
while(entry && (entry->GetId() != id))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,6 @@
|
||||||
|
|
||||||
#ifndef _NORM_VERSION
|
#ifndef _NORM_VERSION
|
||||||
#define _NORM_VERSION
|
#define _NORM_VERSION
|
||||||
#define VERSION "1.1b8"
|
#define VERSION "1.1b9"
|
||||||
#endif // _NORM_VERSION
|
#endif // _NORM_VERSION
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue