mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
- Resolve backlog of CVEs PR: 201513 Reported by: Sevan Janiyan Submitted by: Jason Unovitch (maintainer) Security: CVE-2004-0941 [1] Security: CVE-2007-0455 [1] Security: CVE-2007-2756 [1] Security: CVE-2007-3472 [1] Security: CVE-2007-3473 [1] Security: CVE-2007-3477 [1] Security: CVE-2009-3546 [1] Security: CVE-2015-4695 [2] Security: CVE-2015-4696 [3] Security: CVE-2015-0848 [4] Security: CVE-2015-4588 [4] Security: ca139c7f-2a8c-11e5-a4a5-002590263bf5 Obtained From: CentOS libwmf RPM git [1] Obtained From: Debian Bug 784205 [2] Obtained From: Debian Bug 784192 [3] Obtained From: Red Hat Bug 1227243 [4] MFH: 2015Q3
38 lines
642 B
Text
38 lines
642 B
Text
--- src/extra/gd/gd.c
|
|
+++ src/extra/gd/gd.c
|
|
@@ -1335,10 +1335,31 @@
|
|
int w2, h2;
|
|
w2 = w / 2;
|
|
h2 = h / 2;
|
|
- while (e < s)
|
|
- {
|
|
- e += 360;
|
|
- }
|
|
+
|
|
+ if ((s % 360) == (e % 360)) {
|
|
+ s = 0; e = 360;
|
|
+ } else {
|
|
+ if (s > 360) {
|
|
+ s = s % 360;
|
|
+ }
|
|
+
|
|
+ if (e > 360) {
|
|
+ e = e % 360;
|
|
+ }
|
|
+
|
|
+ while (s < 0) {
|
|
+ s += 360;
|
|
+ }
|
|
+
|
|
+ while (e < s) {
|
|
+ e += 360;
|
|
+ }
|
|
+
|
|
+ if (s == e) {
|
|
+ s = 0; e = 360;
|
|
+ }
|
|
+ }
|
|
+
|
|
for (i = s; (i <= e); i++)
|
|
{
|
|
int x, y;
|