From: Marcus Boerger Date: Sun, 6 Mar 2005 22:18:09 +0000 (+0000) Subject: - Actuall the comments were correct X-Git-Tag: RELEASE_0_3~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef64180c90e64ead95fbd181500f83564efb5710;p=php - Actuall the comments were correct --- diff --git a/ext/standard/image.c b/ext/standard/image.c index 9960f6fff0..da4ca7c7fa 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -625,8 +625,8 @@ static struct gfxinfo *php_handle_jpc(php_stream * stream TSRMLS_DC) dummy_short = php_read2(stream TSRMLS_CC); /* Lsiz */ dummy_short = php_read2(stream TSRMLS_CC); /* Rsiz */ - result->width = php_read4(stream TSRMLS_CC); /* Ysiz */ - result->height = php_read4(stream TSRMLS_CC); /* Xsiz */ + result->width = php_read4(stream TSRMLS_CC); /* Xsiz */ + result->height = php_read4(stream TSRMLS_CC); /* Ysiz */ #if MBO_0 php_read4(stream TSRMLS_CC); /* XOsiz */