NB! This project is outdated and unmaintained, please refer to the OpenSC MacInstaller instead!
Changeset 82
- Timestamp:
-
09/19/06 15:09:38
(6 years ago)
- Author:
- ludovic.rousseau
- Message:
-
penSCKeyHandle::getOutputSize(): add a return 0 to avoid a
"OpenSCKeyHandle.cpp:63: warning: control reaches end of non-void
function" compiler error
The return will never be executed since we have a
CssmError::throwMe(CSSM_ERRCODE_FUNCTION_NOT_IMPLEMENTED); just before
it
-
File:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r69
|
r82
|
|
| 61 | 61 | secdebug("crypto", "getOutputSize"); |
| 62 | 62 | CssmError::throwMe(CSSM_ERRCODE_FUNCTION_NOT_IMPLEMENTED); |
| | 63 | return 0; |
| 63 | 64 | } |
| 64 | 65 | |