VirtualBox

Changeset 40504 in vbox for trunk/src/libs


Ignore:
Timestamp:
Mar 16, 2012 4:38:06 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76890
Message:

Solaris 11 build fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_util.c

    r4837 r40504  
    5555}
    5656
    57 #if defined(XP_MAC) || defined(XP_SOLARIS)
    58 static char *strdup(const char *c)
    59 {
    60         char    *newStr = malloc(strlen(c) + 1);
    61         if (newStr)
    62         {
    63                 strcpy(newStr, c);
    64         }
    65         return newStr;
    66 }
    67 #endif
    68 
    6957char *
    7058xpidl_strdup(const char *s)
    7159{
     60#if defined(XP_MAC) || defined(XP_SOLARIS) /* bird: dunno why this is required, but whatever*/
     61    size_t len = strlen(s);
     62        char *ns = malloc(len + 1);
     63        if (ns)
     64                memcpy(ns, s, len + 1);
     65#else
    7266    char *ns = strdup(s);
     67#endif
    7368    if (!ns) {
    7469        fputs(OOM, stderr);
Note: See TracChangeset for help on using the changeset viewer.

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