Diff for /embedaddon/php/ext/standard/url.c between versions 1.1.1.3 and 1.1.1.4

version 1.1.1.3, 2013/07/22 01:32:05 version 1.1.1.4, 2013/10/14 08:02:35
Line 266  PHPAPI php_url *php_url_parse_ex(char const *str, int  Line 266  PHPAPI php_url *php_url_parse_ex(char const *str, int 
                 p = s;                  p = s;
         } else {          } else {
                 /* memrchr is a GNU specific extension                  /* memrchr is a GNU specific extension
                   Emulate for wide compatability */                   Emulate for wide compatibility */
                 for(p = e; *p != ':' && p >= s; p--);                  for(p = e; *p != ':' && p >= s; p--);
         }          }
   

Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>