atheros / xbrzscale

Image upscaling commandline tool using xBRZ algorithm
GNU General Public License v3.0
99 stars 17 forks source link

Overflow (C26451) #15

Open Bxaa opened 3 years ago

Bxaa commented 3 years ago

Uint8 *p = (Uint8 *)surface->pixels + y * surface->pitch + x * bpp; -to- Uint8 *p = (Uint8 *)surface->pixels + static_cast<__int64>(y) * surface->pitch + static_cast<__int64>(x) * bpp;


ETC...
atheros commented 3 years ago

Hi, would you like to provide a pull request for this fix?