]> git.tdb.fi Git - libs/gl.git/commitdiff
Memory allocation changes
authorMikko Rasa <tdb@tdb.fi>
Sun, 2 Sep 2012 14:30:54 +0000 (17:30 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 2 Sep 2012 14:30:54 +0000 (17:30 +0300)
Use std::copy instead of memcpy
Call operator= from copy constructor
Allocate memory only when needed, not one byte before

source/vertexformat.cpp

index 65b276baa7115e5c5482fc0b39ac0a1ed4f85cb4..0a26d94268847b94d443bcf6e9d47192936d1722 100644 (file)
@@ -1,4 +1,4 @@
-#include <cstring>
+#include <algorithm>
 #include <msp/strings/format.h>
 #include <msp/strings/lexicalcast.h>
 #include <msp/strings/utils.h>
@@ -24,11 +24,7 @@ VertexFormat::VertexFormat(VertexComponent c):
 VertexFormat::VertexFormat(const VertexFormat &f):
        data(0)
 {
-       if(f.data)
-       {
-               data = new unsigned char[(f.data[0]&~7)+8];
-               memcpy(data, f.data, f.data[0]+1);
-       }
+       *this = f;
 }
 
 VertexFormat &VertexFormat::operator=(const VertexFormat &f)
@@ -37,7 +33,7 @@ VertexFormat &VertexFormat::operator=(const VertexFormat &f)
        if(f.data)
        {
                data = new unsigned char[(f.data[0]&~7)+8];
-               memcpy(data, f.data, f.data[0]+1);
+               copy(f.data, f.data+f.data[0]+1, data);
        }
        else
                data = 0;
@@ -56,10 +52,10 @@ VertexFormat VertexFormat::operator,(VertexComponent c) const
        if(r.data)
        {
                const unsigned char n = ++r.data[0];
-               if((n&7)==7)
+               if((n&7)==0)
                {
-                       unsigned char *newdt = new unsigned char[n+9];
-                       memcpy(newdt, r.data, n);
+                       unsigned char *newdt = new unsigned char[n+8];
+                       copy(r.data, r.data+n, newdt);
                        delete r.data;
                        r.data = newdt;
                }