VirtualBox

忽略:
時間撮記:
2015-4-22 上午09:34:46 (10 年 以前)
作者:
vboxsync
訊息:

NetworkServices: When handling COM/XPCOM events, always check if the event is for our network, otherwise ignore the event. Renamed {get/set}Network to {get/set}NetworkName(). Renamed {get/set}Name to {get/set}ServiceName(). Use RT_ZERO instead of memset if possible. Coding style.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/NetworkServices/NetLib/VBoxNetPortForwardString.cpp

    r54944 r55365  
    234234    AssertPtrReturn(pPfr, VERR_INVALID_PARAMETER);
    235235
    236     memset(pPfr, 0, sizeof(PORTFORWARDRULE));
     236    RT_ZERO(*pPfr);
    237237
    238238    pszHostAddr = &pPfr->szPfrHostAddr[0];
     
    271271                  pszRaw);
    272272        pszRaw += cbToken; /* move to separator */
     273        cbRaw -= cbToken;
    273274    }
    274275
     
    277278
    278279    pszRaw++; /* skip separator */
     280    cbRaw--;
    279281    idxRaw = 0;
    280 
    281     cbRaw--;
    282282
    283283    if (  (  (fTcpProto = (RTStrNICmp(pszRaw, "tcp", 3) == 0))
     
    293293    pszRaw += idxRaw;
    294294    cbRaw -= idxRaw;
    295     idxRaw = 0;
    296295
    297296    idxRaw = netPfStrAddressPortPairParse(pszRaw, cbRaw,
     
    306305    Assert(pszRaw[0] == PF_FIELD_SEPARATOR);
    307306
    308     idxRaw = 0;
    309 
    310307    idxRaw = netPfStrAddressPortPairParse(pszRaw, cbRaw,
    311                                           pszGuestAddr,
    312                                           INET6_ADDRSTRLEN,
    313                                           false,
    314                                           &u16GuestPort);
     308                                          pszGuestAddr, INET6_ADDRSTRLEN,
     309                                          false, &u16GuestPort);
    315310
    316311    if (idxRaw < 0)
     
    344339    RTStrFree(pszRawBegin);
    345340    if (pPfr)
    346         memset(pPfr, 0, sizeof(PORTFORWARDRULE));
     341        RT_ZERO(*pPfr);
    347342    return VERR_INVALID_PARAMETER;
    348343}
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette