You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 20, 2023. It is now read-only.
Corrected memory leak from extra memory allocation.
We were allocating twice the memory needed to buffer the QR code string. The second allocation (strdup) was overwriting the assignment of the pointer to the first. Consequently, the first allocation was never free'd. In the end, we don't need to allocate anything ourself and can defer to Apple's Foundation to do that for us.
0 commit comments