- Timestamp:
- Oct 10, 2014 6:18:03 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/store-inmem.cpp
r51781 r53033 32 32 #include <iprt/crypto/store.h> 33 33 34 #include <iprt/asm.h> 34 35 #include <iprt/err.h> 35 36 #include <iprt/mem.h> … … 254 255 { 255 256 pSearch->auOpaque[1] = i + 1; 256 pThis->papCerts[i]->Core.cRefs++; 257 return &pThis->papCerts[i]->Core.Public; 257 PRTCRCERTCTXINT pCertCtx = &pThis->papCerts[i]->Core; 258 ASMAtomicIncU32(&pCertCtx->cRefs); 259 return &pCertCtx->Public; 258 260 } 259 261 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.