зеркало из https://github.com/mozilla/pjs.git
Fix PNG crasher/hang. The problem is due to a the casting of float to int/unsigned.
Patch submitted by randeg@alum.rpi.edu r=pavlov@pavlov.net sr=tor@acm.org a=asa@mozilla.org # 200801
This commit is contained in:
Родитель
52fc1852c6
Коммит
1f221309c6
|
@ -208,8 +208,10 @@ info_callback(png_structp png_ptr, png_infop info_ptr)
|
|||
#endif
|
||||
|
||||
if (png_get_gAMA(png_ptr, info_ptr, &aGamma)) {
|
||||
if (aGamma < 0)
|
||||
if ((aGamma <= 0.0) || (aGamma > 21474.83)) {
|
||||
aGamma = 0.45455;
|
||||
png_set_gAMA(png_ptr, info_ptr, aGamma);
|
||||
}
|
||||
png_set_gamma(png_ptr, 2.2, aGamma);
|
||||
}
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче