AxisCommunications / acap-native-sdk-examples

Example code for APIs and features in AXIS Camera Application Platform (ACAP) Native SDK
Apache License 2.0
41 stars 23 forks source link

Fix overflow issue #195

Closed mentoc3000 closed 6 months ago

mentoc3000 commented 7 months ago

Describe your changes

When assigning pointers to labelArray, if the file had a final, empty newline, the last element of labelArray would try to be assigned to a pointer to labelsData + labelsFileSize + 1, which can cause a warning that can disrupt inference:

malloc(): invalid size (unsorted)

I also removed the replacement of the final '\n' with '\0' because it is always done in the loop.

Checklist before requesting a review

pataxis commented 6 months ago

Thank you @mentoc3000 for your contribution, it's very appreciated!