- MFH: No C++ comments (fix #39414)

This commit is contained in:
Johannes Schlüter 2006-11-07 15:19:11 +00:00
parent 69dbaaacac
commit c65a1f10cb
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -13,6 +13,8 @@ PHP NEWS
php_filter.h).
- Fixed wrong signature initialization in imagepng (Takeshi Abe)
- Added optimization for imageline with horizontal and vertial lines (Pierre)
- Fixed bug #39414 (Syntax error while compiling with Sun Workshop Complier).
(Johannes)
- Fixed bug #39366 (imagerotate does not use alpha with angle > 45°) (Pierre)
- Fixed bug #39362 (Added an option to imap_open/imap_reopen to control the
number of connection retries). (Ilia)

View File

@ -1487,7 +1487,7 @@ SPL_METHOD(RegexIterator, setMode)
if (mode < 0 || mode >= REGIT_MODE_MAX) {
zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0 TSRMLS_CC, "Illegal mode %ld", mode);
return;// NULL
return;/* NULL */
}
intern->u.regex.mode = mode;