Skip to content

Commit

Permalink
Regenerated build/ files
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed Oct 19, 2013
1 parent af6c30b commit 65ba61b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build/32bits/phalcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -65613,7 +65613,11 @@ static PHP_METHOD(Phalcon_Mvc_Dispatcher, getControllerName){
char *c = Z_STRVAL_P(return_value);
int len = Z_STRLEN_P(return_value);
memmove(c, c+1, len-1);
c[len] = 0;
c[len-1] = 0;
c = erealloc(c, len);
if (likely(c != NULL)) {
RETVAL_STRINGL(c, len-1, 0);
}
}
}

Expand Down
6 changes: 5 additions & 1 deletion build/64bits/phalcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -65613,7 +65613,11 @@ static PHP_METHOD(Phalcon_Mvc_Dispatcher, getControllerName){
char *c = Z_STRVAL_P(return_value);
int len = Z_STRLEN_P(return_value);
memmove(c, c+1, len-1);
c[len] = 0;
c[len-1] = 0;
c = erealloc(c, len);
if (likely(c != NULL)) {
RETVAL_STRINGL(c, len-1, 0);
}
}
}

Expand Down
6 changes: 5 additions & 1 deletion build/safe/phalcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -65613,7 +65613,11 @@ static PHP_METHOD(Phalcon_Mvc_Dispatcher, getControllerName){
char *c = Z_STRVAL_P(return_value);
int len = Z_STRLEN_P(return_value);
memmove(c, c+1, len-1);
c[len] = 0;
c[len-1] = 0;
c = erealloc(c, len);
if (likely(c != NULL)) {
RETVAL_STRINGL(c, len-1, 0);
}
}
}

Expand Down

0 comments on commit 65ba61b

Please sign in to comment.