- 時間撮記:
- 2014-7-20 下午07:52:23 (10 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r52082 r52104 4649 4649 if (cbKey != -1) 4650 4650 { 4651 uint8_t *pbKey = (uint8_t *)RTMemSaferAllocZ(cbKey); 4652 if (pbKey) 4651 uint8_t *pbKey = NULL; 4652 rc = RTMemSaferAllocZEx(&pbKey, cbKey, RTMEMSAFER_F_REQUIRE_NOT_PAGABLE); 4653 if (RT_SUCCESS(rc)) 4653 4654 { 4654 4655 rc = RTBase64Decode(pszKeyEnc, pbKey, cbKey, NULL, NULL); … … 4667 4668 else 4668 4669 hrc = setError(E_FAIL, 4669 tr("Failed to allocate secure memory for the key "));4670 tr("Failed to allocate secure memory for the key (%Rrc)"), rc); 4670 4671 } 4671 4672 else
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器