diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-21 02:19:20 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-21 02:19:20 +0000 |
commit | 5ed73f5e12b9f2b29a64bbeb59ef5e02e2ed82b2 (patch) | |
tree | c0bb0eb13dfd8efbb8228ba705798e4742d786d7 /websvcs | |
parent | 1ae2604067857ec3dfcffdf365127a153a4161e0 (diff) | |
download | ATCD-5ed73f5e12b9f2b29a64bbeb59ef5e02e2ed82b2.tar.gz |
ChangeLogTag:Thu Jan 20 18:18:00 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'websvcs')
-rw-r--r-- | websvcs/lib/URL_Addr.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/websvcs/lib/URL_Addr.cpp b/websvcs/lib/URL_Addr.cpp index 82ae6e93f2f..86a0a9d0cea 100644 --- a/websvcs/lib/URL_Addr.cpp +++ b/websvcs/lib/URL_Addr.cpp @@ -250,8 +250,7 @@ ACE_HTTP_Addr::set (const ACE_TCHAR *host_name, ACE_TCHAR *buffer; ACE_ALLOCATOR_RETURN (buffer, - ACE_reinterpret_cast(ACE_TCHAR *, - ACE_OS::malloc (size)), + reinterpret_cast<ACE_TCHAR *> (ACE_OS::malloc (size)), -1); if (this->addr_to_string (buffer, size, 1) == -1) return -1; @@ -609,8 +608,7 @@ ACE_FTP_Addr::set (const ACE_TCHAR *host_name, ACE_TCHAR *buffer; ACE_ALLOCATOR_RETURN (buffer, - ACE_reinterpret_cast(ACE_TCHAR *, - ACE_OS::malloc (size)), + reinterpret_cast<ACE_TCHAR *> (ACE_OS::malloc (size)), -1); if (this->addr_to_string (buffer, size, 1) == -1) return -1; @@ -839,8 +837,7 @@ ACE_Mailto_Addr::set (const ACE_TCHAR *user, size_t size = this->url_size (1); ACE_TCHAR *buffer; ACE_ALLOCATOR_RETURN (buffer, - ACE_reinterpret_cast(ACE_TCHAR *, - ACE_OS::malloc (size)), + reinterpret_cast<ACE_TCHAR *> (ACE_OS::malloc (size)), -1); if (this->addr_to_string (buffer, size, 1) == -1) return -1; |