Lori Tribble
changed
bug 12422
Comment # 6
on bug 12422
from Lori Tribble
Simple fix in bacapp.c
Change the decoding of the timestamp to check the array index first. Here is
changed code snippet.
case 130: /* event-time-stamp */
if (propertyArrayIndex == 0) {
/* BACnetARRAY index 0 refers to the length
of the array, not the elements of the array */
offset = fApplicationTypes(tvb, pinfo, tree, offset, ar);
} else {
offset = fEventTimeStamps(tvb, pinfo, tree, offset);
}
break;
You are receiving this mail because:
- You are watching all bug changes.