diff options
Diffstat (limited to 'mail/xc-mail/files/patch-src_stringTokenizer.cxx')
-rw-r--r-- | mail/xc-mail/files/patch-src_stringTokenizer.cxx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/xc-mail/files/patch-src_stringTokenizer.cxx b/mail/xc-mail/files/patch-src_stringTokenizer.cxx deleted file mode 100644 index 1024d3eadf1d..000000000000 --- a/mail/xc-mail/files/patch-src_stringTokenizer.cxx +++ /dev/null @@ -1,20 +0,0 @@ ---- src/stringTokenizer.cxx.orig Wed Aug 17 11:05:22 2005 -+++ src/stringTokenizer.cxx Wed Aug 17 13:35:24 2005 -@@ -455,7 +455,7 @@ - { - chs+=strlen(get(i)->tokenize(delim2?delim2:delim,ign_bslash))+l; - } -- if (!(return_buf=(char*)malloc(chs))) -+ if (chs == 0 || !(return_buf=(char*)malloc(chs))) - { - return (char*)""; - } -@@ -478,7 +478,7 @@ - } - } - } -- *d=0; -+ //*d=0; - return return_buf; - } - |