VirtualBox

儲存庫 vbox 的更動 55115


忽略:
時間撮記:
2015-4-7 下午01:50:03 (10 年 以前)
作者:
vboxsync
訊息:

FE/Qt: UIMessageCenter.cpp: Fixed QPixmap memory leak.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp

    r54937 r55115  
    337337{
    338338    /* Prepare pixmap: */
    339     QPixmap *pPixmap = 0;
     339    QPixmap *pPixmap = NULL;
    340340    if (!strImage.isEmpty())
    341341        pPixmap = new QPixmap(strImage);
     
    350350
    351351    /* Make sure progress-dialog still valid: */
    352     if (!pProgressDlg)
    353         return false;
    354 
    355     /* Delete progress-dialog: */
    356     delete pProgressDlg;
     352    bool fRc;
     353    if (pProgressDlg)
     354    {
     355        /* Delete progress-dialog: */
     356        delete pProgressDlg;
     357
     358        fRc = true;
     359    }
     360    else
     361        fRc = false;
    357362
    358363    /* Cleanup pixmap: */
     
    360365        delete pPixmap;
    361366
    362     return true;
     367    return fRc;
    363368}
    364369
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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