summaryrefslogtreecommitdiff
path: root/colm/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'colm/string.c')
-rw-r--r--colm/string.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/colm/string.c b/colm/string.c
index d670b68c..21c3aac4 100644
--- a/colm/string.c
+++ b/colm/string.c
@@ -89,8 +89,6 @@ Head *initStrSpace( long length )
{
/* Find the length and allocate the space for the shared string. */
Head *head = (Head*) malloc( sizeof(Head) + length );
- //if ( head == 0 )
- // throw std::bad_alloc();
/* Init the header. */
head->data = (char*)(head+1);