php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11769 PDF_setcolor (invalid type of the third argument)
Submitted: 2001-06-28 05:03 UTC Modified: 2001-06-28 13:46 UTC
From: cedric dot scheyder at alcatel dot fr Assigned:
Status: Closed Package: PDF related
PHP Version: 4.0.5 OS: Solaris 2.8
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
49 + 19 = ?
Subscribe to this entry?

 
 [2001-06-28 05:03 UTC] cedric dot scheyder at alcatel dot fr
PHP_FUNCTION(pdf_setcolor) {
        zval **arg1, **arg2, **arg3, **arg4, **arg5, **arg6, **arg7;
        PDF *pdf;




        float c1;     <========== TO BE MODIFIED !!!!!!!!!! (replace the int by a float)




        if (ZEND_NUM_ARGS() != 7 || zend_get_parameters_ex(7, &arg1, &arg2, &arg3, &arg4, &arg5, &arg6, &arg7) == FAILURE) {
                WRONG_PARAM_COUNT;
        }

        ZEND_FETCH_RESOURCE(pdf, PDF *, arg1, -1, "pdf object", le_pdf);

        convert_to_string_ex(arg2);
        convert_to_string_ex(arg3);
        convert_to_double_ex(arg4);
        convert_to_double_ex(arg5);
        convert_to_double_ex(arg6);
        convert_to_double_ex(arg7);

        if (0 == (strcmp(Z_STRVAL_PP(arg3), "spot"))) {
            c1 = (int) Z_DVAL_PP(arg4)-PDFLIB_SPOT_OFFSET;
        } else if(0 == (strcmp(Z_STRVAL_PP(arg3), "pattern"))) {
            c1 = (int) Z_DVAL_PP(arg4)-PDFLIB_PATTERN_OFFSET;
        } else {
            c1 = (float) Z_DVAL_PP(arg4);
        }

        PDF_setcolor(pdf,
                Z_STRVAL_PP(arg2),
                Z_STRVAL_PP(arg3),
                (float) c1,
                (float) Z_DVAL_PP(arg5),
                (float) Z_DVAL_PP(arg6),
                (float) Z_DVAL_PP(arg7));

        RETURN_TRUE;
}

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-06-28 05:06 UTC] cedric dot scheyder at alcatel dot fr
in pdf.c file:

            PHP_FUNCTION(pdf_setcolor) {
                    zval **arg1, **arg2, **arg3, **arg4, **arg5, **arg6, **arg7;
                    PDF *pdf;



                    /* int c1;  */
                    float c1;     <========== TO BE MODIFIED !!!!!!!!!! (replace the int by a
            float)




                    if (ZEND_NUM_ARGS() != 7 || zend_get_parameters_ex(7, &arg1, &arg2,
            &arg3, &arg4, &arg5, &arg6, &arg7) == FAILURE) {
                            WRONG_PARAM_COUNT;
                    }

                    ZEND_FETCH_RESOURCE(pdf, PDF *, arg1, -1, "pdf object", le_pdf);

                    convert_to_string_ex(arg2);
                    convert_to_string_ex(arg3);
                    convert_to_double_ex(arg4);
                    convert_to_double_ex(arg5);
                    convert_to_double_ex(arg6);
                    convert_to_double_ex(arg7);

                    if (0 == (strcmp(Z_STRVAL_PP(arg3), "spot"))) {
                        c1 = (int) Z_DVAL_PP(arg4)-PDFLIB_SPOT_OFFSET;
                    } else if(0 == (strcmp(Z_STRVAL_PP(arg3), "pattern"))) {
                        c1 = (int) Z_DVAL_PP(arg4)-PDFLIB_PATTERN_OFFSET;
                    } else {
                        c1 = (float) Z_DVAL_PP(arg4);
                    }

                    PDF_setcolor(pdf,
                            Z_STRVAL_PP(arg2),
                            Z_STRVAL_PP(arg3),
                            (float) c1,
                            (float) Z_DVAL_PP(arg5),
                            (float) Z_DVAL_PP(arg6),
                            (float) Z_DVAL_PP(arg7));

                    RETURN_TRUE;
            }
 [2001-06-28 13:46 UTC] sniper@php.net
Fixed in PHP 4.0.6 


 [2011-11-07 16:16 UTC] nikic@php.net
Automatic comment from SVN on behalf of nikic
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=318884
Log: Fix typos

--
Provided by anonymous #11769 (Laurent.Lyaudet@gmail.com)
 [2012-02-13 20:10 UTC] tularis@php.net
Automatic comment from SVN on behalf of tularis
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=323196
Log: Fixed a number of typo's

--
Provided by anonymous #11769 (Laurent.Lyaudet@gmail.com)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 14:01:31 2024 UTC