VirtualBox

Changeset 103408 in vbox


Ignore:
Timestamp:
Feb 18, 2024 5:46:49 PM (9 months ago)
Author:
vboxsync
Message:

VMM/DBGFR3Bp.cpp: Remove some redundant conditions (checked at the top that phBp is != NULL), bugref:3409

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/DBGFR3Bp.cpp

    r99739 r103408  
    22082208            {
    22092209                rc = VINF_DBGF_BP_ALREADY_EXIST;
    2210                 if (phBp)
    2211                     *phBp = hBp;
     2210                *phBp = hBp;
    22122211            }
    22132212            return rc;
     
    23322331        {
    23332332            rc = VINF_DBGF_BP_ALREADY_EXIST;
    2334             if (phBp)
    2335                 *phBp = hBp;
     2333            *phBp = hBp;
    23362334        }
    23372335        return rc;
     
    23592357            if (RT_SUCCESS(rc))
    23602358            {
    2361                 if (phBp)
    2362                     *phBp = hBp;
     2359                *phBp = hBp;
    23632360                return VINF_SUCCESS;
    23642361            }
     
    24642461        {
    24652462            rc = VINF_DBGF_BP_ALREADY_EXIST;
    2466             if (phBp)
    2467                 *phBp = hBp;
     2463            *phBp = hBp;
    24682464        }
    24692465        return rc;
Note: See TracChangeset for help on using the changeset viewer.

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