Parcourir la source

core: fix a bug in the Array class copy constructor, found thanks to

the unit tests.
legacy
Sam Hocevar sam il y a 12 ans
Parent
révision
6cd8c0ece3
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      src/array.h

+ 2
- 1
src/array.h Voir le fichier

@@ -39,12 +39,13 @@ public:
ArrayBase(ArrayBase const& that) : m_data(0), m_count(0), m_reserved(0)
{
Reserve(that.m_reserved);
memcpy(m_data, that.m_data, m_count * sizeof(Element));
memcpy(m_data, that.m_data, that.m_count * sizeof(Element));
m_count = that.m_count;
}

ArrayBase& operator=(ArrayBase const& that)
{
/* FIXME: delete old data!! */
m_data = 0;
m_count = 0;
m_reserved = 0;


Chargement…
Annuler
Enregistrer