luxonis / XLink

A cross-platform library for communicating with devices over various physical links.
Apache License 2.0
11 stars 17 forks source link

remove dup decrement for TCPIP device searches #58

Closed diablodale closed 1 year ago

diablodale commented 1 year ago

fix luxonis/XLink#56 buy removing the duplicate decrement of sizeFoundDevices

I also caution that src\pc\PlatformDeviceSearch.c lines 89 and 120 are missing a dangerous scenario. If numFoundDevices > sizeFoundDevices that means that memory was overwritten/corrupted. That scenario must never occur. This PR does not address that danger.