VirtualBox

vbox的更動 65809 路徑 trunk/src/VBox/NetworkServices


忽略:
時間撮記:
2017-2-20 上午11:55:55 (8 年 以前)
作者:
vboxsync
訊息:

NetworkServices/VBoxNetLwipNAT: properly free the list of name servers on termination

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp

    r64759 r65809  
    689689VBoxNetLwipNAT::~VBoxNetLwipNAT()
    690690{
    691     if (m_ProxyOptions.tftp_root != NULL)
     691    if (m_ProxyOptions.tftp_root)
    692692    {
    693693        RTStrFree((char *)m_ProxyOptions.tftp_root);
     694        m_ProxyOptions.tftp_root = NULL;
     695    }
     696    if (m_ProxyOptions.nameservers)
     697    {
     698        const char **pv = m_ProxyOptions.nameservers;
     699        while (*pv)
     700        {
     701            RTStrFree((char*)*pv);
     702            pv++;
     703        }
     704        RTMemFree(m_ProxyOptions.nameservers);
     705        m_ProxyOptions.nameservers = NULL;
    694706    }
    695707}
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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