| c++ Programming Glossary: image.pixelsI don't understand why this is causeing my program to crash? http://stackoverflow.com/questions/8424303/i-dont-understand-why-this-is-causeing-my-program-to-crash  r 1 image.infoHeader.biWidth c 1 tempPixel t image.pixels f  image.pixels tempPixel delete tempPixel  c visual c   share.. 1 image.infoHeader.biWidth c 1 tempPixel t image.pixels f  image.pixels tempPixel delete tempPixel  c visual c   share improve this.. if in the end you are going to assign tempPixel to image.pixels then you must not delete tempPixel otherwise image will be replaced.. 
 |