Closed dhardiman closed 9 years ago
The _actualBlock value is never released in dealloc meaning everything captured in expect() is leaked.
_actualBlock
dealloc
expect()
Interesting, looks legit to me :+1:
awesome! I saw that problem before in Instruments, but thought that it was just from my code.. (leaks)
The
_actualBlock
value is never released indealloc
meaning everything captured inexpect()
is leaked.