[Wavelet-commit] Wavelet Image.cc,1.33,1.34
Status: Beta
Brought to you by:
herbert
From: Herbert M. D. <he...@us...> - 2009-05-29 10:47:50
|
Update of /cvsroot/wavelet/Wavelet In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv19030 Modified Files: Image.cc Log Message: fixed bug in fix of out-of-bounds access in image Index: Image.cc =================================================================== RCS file: /cvsroot/wavelet/Wavelet/Image.cc,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** Image.cc 29 May 2009 10:25:13 -0000 1.33 --- Image.cc 29 May 2009 10:47:42 -0000 1.34 *************** *** 899,903 **** if (col >= m_image.cols ()) { ! row = m_image.rows () - 1; } } --- 899,903 ---- if (col >= m_image.cols ()) { ! col = m_image.cols () - 1; } } |