Changeset 40504 in vbox for trunk/src/libs
- Timestamp:
- Mar 16, 2012 4:38:06 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76890
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_util.c
r4837 r40504 55 55 } 56 56 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 #endif68 69 57 char * 70 58 xpidl_strdup(const char *s) 71 59 { 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 72 66 char *ns = strdup(s); 67 #endif 73 68 if (!ns) { 74 69 fputs(OOM, stderr);
Note:
See TracChangeset
for help on using the changeset viewer.