LudovicRousseau / PCSC

pcsc-lite: PC/SC implementation
https://pcsclite.apdu.fr/
Other
268 stars 109 forks source link

Avoid memory leaks #188

Closed Jakuje closed 5 months ago

Jakuje commented 5 months ago

The CFBundleName variable is assigned to 0-N driverTracker structures and when they are freed, its leaked.

This is not a huge issue, as I understand it, it happens only on-time, but this should make the static analyzers more happy.

LudovicRousseau commented 5 months ago

Fixed in https://github.com/LudovicRousseau/PCSC/commit/63a9371eca5807e62df965127a5bce1e75667b3f Thanks

Jakuje commented 5 months ago

Thanks!