diff options
Diffstat (limited to 'ext/standard/image.c')
| -rw-r--r-- | ext/standard/image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index cb35773ac0..51a331ae0c 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -724,7 +724,7 @@ static struct gfxinfo *php_handle_iff(php_stream * stream TSRMLS_DC) result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); - // loop chunks to find BMHD chunk + /* loop chunks to find BMHD chunk */ do { if (php_stream_read(stream, a, 8) != 8) { efree(result); @@ -735,7 +735,7 @@ static struct gfxinfo *php_handle_iff(php_stream * stream TSRMLS_DC) if ((size & 1) == 1) { size++; } - if (chunkId == 0x424d4844) { // BMHD chunk + if (chunkId == 0x424d4844) { /* BMHD chunk */ if (php_stream_read(stream, a, 9) != 9) { efree(result); return NULL; |
