]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspstring.h
Remove strnewdup(), it is a good source of possible memory leaks
[user/henk/code/inspircd.git] / include / inspstring.h
index 54bb1c8bd641927e0546b67dfae7b293f134cb28..4a7fa627144fa36f0db090e637fe393f09d396c1 100644 (file)
@@ -39,19 +39,5 @@ CoreExport int charlcat(char* x,char y,int z);
  */
 CoreExport bool charremove(char* mp, char remove);
 
-/** strnewdup() is an implemenetation of strdup() which calls operator new
- * rather than malloc to allocate the new string, therefore allowing it to
- * be hooked into the C++ memory manager, and freed with operator delete.
- * This is required for windows, where we override operators new and delete
- * to allow for global allocation between modules and the core.
- */
-inline char * strnewdup(const char * s1)
-{
-       size_t len = strlen(s1) + 1;
-       char * p = new char[len];
-       memcpy(p, s1, len);
-       return p;
-}
-
 #endif