VirtualBox

Changeset 56330 in vbox


Ignore:
Timestamp:
Jun 10, 2015 11:22:54 AM (10 years ago)
Author:
vboxsync
Message:

scmsubversion.cpp: ppszValue can be NULL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bldprogs/scmsubversion.cpp

    r56308 r56330  
    11011101                        const char **ppszFirst = (const char **)g_pfnAprHashThisVal(pHashIdx);
    11021102                        if (ppszFirst && *ppszFirst)
    1103                             rc = RTStrDupEx(ppszValue, *ppszFirst);
     1103                        {
     1104                            if (ppszValue)
     1105                                rc = RTStrDupEx(ppszValue, *ppszFirst);
     1106                            else
     1107                                rc = VINF_SUCCESS;
     1108                        }
    11041109                    }
    11051110                }
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