summaryrefslogtreecommitdiff
path: root/include/inspstring.h
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-02 00:47:36 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-02 00:47:36 +0000
commit2455cd671f4dbc017cf7bb76fb7b29e9f95f3b40 (patch)
tree32f56448c301d523916c6f14f3e25a442aec4d29 /include/inspstring.h
parent771016b99723ae1b4924b85297817a7957563981 (diff)
Remove strnewdup(), it is a good source of possible memory leaks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11622 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspstring.h')
-rw-r--r--include/inspstring.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/inspstring.h b/include/inspstring.h
index 54bb1c8bd..4a7fa6271 100644
--- a/include/inspstring.h
+++ b/include/inspstring.h
@@ -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