miekg / pkcs11

pkcs11 wrapper for Go
BSD 3-Clause "New" or "Revised" License
375 stars 133 forks source link

Remove unnecessary defer from toList() function. #153

Closed ansiwen closed 2 years ago

ansiwen commented 2 years ago

Defer is more expensive than a direct call, and right before a return statement is has no effect on the logic.