儲存庫 vbox 的更動 62790
- 時間撮記:
- 2016-8-1 上午07:05:40 (8 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/HostServices/SharedFolders/vbsfpath.cpp
r62489 r62790 529 529 * If guest uses UTF-16 then convert it to UTF-8. 530 530 */ 531 uint32_t cbGuestPath ;532 const char *pchGuestPath ;531 uint32_t cbGuestPath = 0; /* Shut up MSC */ 532 const char *pchGuestPath = NULL; /* Ditto. */ 533 533 char *pchGuestPathAllocated = NULL; /* Converted from UTF-16. */ 534 534 if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8)) … … 579 579 pchGuestPathAllocated[cbPathAsUtf8] = '\0'; 580 580 581 cbGuestPath = cbPathAsUtf8;581 cbGuestPath = (uint32_t)cbPathAsUtf8; Assert(cbGuestPath == cbPathAsUtf8); 582 582 pchGuestPath = pchGuestPathAllocated; 583 583 }
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器