Core-2-Extreme / Video_player_for_3DS

Video player for 3ds
https://gbatemp.net/threads/release-video-player-for-3ds.586094
GNU General Public License v3.0
181 stars 17 forks source link

Fixed crashing due to allowing to scroll the log beyond the last line #17

Closed windows-server-2003 closed 3 years ago

windows-server-2003 commented 3 years ago

While working on https://github.com/windows-server-2003/ThirdTube/issues/20, I found another bug in log.cpp that affects this repository as well. The upper bound of vertical scrolling was 512 instead of 512 - 23, causing out-of-bound accesses in the the draw function and a crash. I just #defined 512 and 23.

Core-2-Extreme commented 3 years ago

Thank you for your fixing.