Changeset 73312 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jul 23, 2018 10:06:18 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/store-cert-add-basic.cpp
r69753 r73312 5 5 6 6 /* 7 * Copyright (C) 2006-201 7Oracle Corporation7 * Copyright (C) 2006-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 413 413 * No assume PEM or DER encoded binary certificate. 414 414 */ 415 else 415 else if (cbContent) 416 416 { 417 417 PCRTCRPEMSECTION pSectionHead; … … 442 442 } 443 443 } 444 else /* Will happen if proxy not set / no connection available. */ 445 rc = RTErrInfoSetF(pErrInfo, VERR_EOF, "Certificate '%s' is empty", pszFilename); 444 446 RTFileReadAllFree(pvContent, cbContent); 445 447 } … … 508 510 * No assume PEM or DER encoded binary certificate. Inspect them one by one. 509 511 */ 510 else 512 else if (cbContent) 511 513 { 512 514 PCRTCRPEMSECTION pSectionHead; … … 593 595 } 594 596 } 597 else /* Will happen if proxy not set / no connection available. */ 598 rc = RTErrInfoSetF(pErrInfo, VERR_EOF, "Certificate '%s' is empty", pszFilename); 595 599 RTFileReadAllFree(pvContent, cbContent); 596 600 }
Note:
See TracChangeset
for help on using the changeset viewer.