vbox的更動 43176 路徑 trunk/src/VBox/Runtime/r3/socket.cpp
- 時間撮記:
- 2012-9-4 下午05:50:31 (12 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/socket.cpp
r43174 r43176 779 779 memset(szDummy, '\0', 10); 780 780 781 rc= RTStrPrintf(szDummy, 10, "%u", *pubDummy);782 783 if (! rc || rc > 3 || rc< 1)781 size_t cb = RTStrPrintf(szDummy, 10, "%u", *pubDummy); 782 783 if (!cb || cb > 3 || cb < 1) 784 784 return VERR_NET_ADDRESS_NOT_AVAILABLE; 785 785 786 memcpy(pszIpV4Address, szDummy, rc);787 788 pszIpV4Address = (pszIpV4Address + rc);786 memcpy(pszIpV4Address, szDummy, cb); 787 788 pszIpV4Address = (pszIpV4Address + cb); 789 789 790 790 if (i < 3) … … 827 827 memset(szDummy, '\0', 10); 828 828 829 rc= RTStrPrintf(szDummy, 10, "%02x", *pubDummy);830 831 if ( rc!= 2)829 size_t cb = RTStrPrintf(szDummy, 10, "%02x", *pubDummy); 830 831 if (cb != 2) 832 832 return VERR_NET_ADDRESS_NOT_AVAILABLE; 833 833 834 memcpy(pszIpV6Address, szDummy, rc);835 836 pszIpV6Address = pszIpV6Address + rc;834 memcpy(pszIpV6Address, szDummy, cb); 835 836 pszIpV6Address = pszIpV6Address + cb; 837 837 pubDummy++; 838 838 }
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器