Menu

#239 Memory corruption with the camera device in playerv

2-1
closed-fixed
player (137)
5
2009-01-03
2008-07-11
No

There is a memory corruption in the flip_image function in file pv_dev_camera.c.

Line 207 reads:
for(r = height; r >= 0; r--) {

This results in one too many line to be copied. It should be:
for(r = height-1; r >= 0; r--) {

Discussion

  • Toby Collett

    Toby Collett - 2009-01-03
    • labels: 389127 --> player
    • milestone: --> 2-1
    • assigned_to: inspectorg --> thjc
     
  • Toby Collett

    Toby Collett - 2009-01-03
    • status: open --> closed-fixed
     

Log in to post a comment.