|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-01-08 08:17 UTC] laruence@php.net
-Assigned To:
+Assigned To: pajoye
[2015-07-12 13:35 UTC] cmb@php.net
-Status: Assigned
+Status: Analyzed
-Assigned To: pajoye
+Assigned To: cmb
[2015-07-12 13:35 UTC] cmb@php.net
[2015-07-12 14:44 UTC] cmb@php.net
[2015-07-12 14:44 UTC] cmb@php.net
-Status: Analyzed
+Status: Closed
[2015-07-14 08:14 UTC] cmb@php.net
[2015-07-21 14:21 UTC] ab@php.net
[2015-07-21 14:21 UTC] ab@php.net
[2016-07-20 11:37 UTC] davey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ Hi, In /ext/gd/libgd/gd_arc.c: 95 if(old_y2!=my2){ 96 for(i=mx1;i<=mx2;i++){ 97 gdImageSetPixel(im,i,my1,c); 98 } 99 } original: old_y2 != my2 looks like the original copy. 100 if(old_y2!=my2){ 101 for(i=mx1;i<=mx2;i++){ 102 gdImageSetPixel(im,i,my2,c); 103 } 104 } I'm guessing the first one should be "if(old_y1!=my1)" ? Thanks,