aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/blob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/unstable/blob.cpp')
-rw-r--r--src/unstable/blob.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unstable/blob.cpp b/src/unstable/blob.cpp
index 69ec28f..e72e265 100644
--- a/src/unstable/blob.cpp
+++ b/src/unstable/blob.cpp
@@ -31,9 +31,10 @@ Bu::Blob::Blob( const class BlobBuilder &rSrc ) :
31 iSize( 0 ) 31 iSize( 0 )
32{ 32{
33 iSize = rSrc.getSize(); 33 iSize = rSrc.getSize();
34 pData = new char[iSize]; 34 pData = new char[iSize+1];
35 35
36 rSrc.copyTo( pData, iSize ); 36 rSrc.copyTo( pData, iSize );
37 pData[iSize] = '\0';
37} 38}
38 39
39Bu::Blob::Blob( const char *pSrc ) : 40Bu::Blob::Blob( const char *pSrc ) :