diff options
| -rw-r--r-- | src/sp_crypt.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sp_crypt.c b/src/sp_crypt.c index c1d9403..a27cc67 100644 --- a/src/sp_crypt.c +++ b/src/sp_crypt.c | |||
| @@ -115,10 +115,9 @@ int decrypt_zval(zval *pDest, bool simulation, zend_hash_key *hash_key) { | |||
| 115 | ret = ZEND_HASH_APPLY_KEEP; | 115 | ret = ZEND_HASH_APPLY_KEEP; |
| 116 | 116 | ||
| 117 | out: | 117 | out: |
| 118 | 118 | zend_string_efree(debase64); | |
| 119 | if (debase64) { zend_string_efree(debase64); } | 119 | efree(decrypted); |
| 120 | if (decrypted) { efree(decrypted); } | 120 | efree(backup); |
| 121 | if (backup) { efree(backup); } | ||
| 122 | 121 | ||
| 123 | return ret; | 122 | return ret; |
| 124 | } | 123 | } |
