Selaa lähdekoodia

image: fix two small but nasty bugs in the Image methods.

undefined
Sam Hocevar 10 vuotta sitten
vanhempi
commit
60a8a64c8f
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. +2
    -1
      src/image/image.cpp

+ 2
- 1
src/image/image.cpp Näytä tiedosto

@@ -117,13 +117,14 @@ Image & Image::operator =(Image other)
/* Since the argument is passed by value, we’re assured it’s a new
* object and we can safely swap our m_data pointers. */
std::swap(m_data, other.m_data);
return *this;
}

Image::~Image()
{
for (int k : m_data->m_pixels.Keys())
{
delete m_data->m_pixels[k];
delete[] m_data->m_pixels[k];
m_data->m_pixels[k] = nullptr;
}
delete m_data;


||||||
x
 
000:0
Ladataan…
Peruuta
Tallenna