Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace placeholders even if the string is not in the language content #2080

Merged
merged 10 commits into from Feb 23, 2014
Prev Previous commit
Cosmetic code fix
  • Loading branch information
sjinks committed Feb 23, 2014
commit 5e1aca09833d69194141c4cef3401c73f7370b9d
6 changes: 3 additions & 3 deletions ext/kernel/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ void phalcon_copy_ctor(zval *destiny, zval *origin) PHALCON_ATTR_NONNULL;
do { \
zval **tmp_ = (ppzv); \
if (tmp_ != NULL) { \
if (*tmp_) { \
zval_ptr_dtor(tmp_); \
*tmp_ = NULL; \
if (*tmp_) { \
zval_ptr_dtor(tmp_); \
*tmp_ = NULL; \
} \
else { \
phalcon_memory_observe((ppzv) TSRMLS_CC); \
Expand Down