summaryrefslogtreecommitdiff
path: root/src/sp_unserialize.c
diff options
context:
space:
mode:
authorThibault "bui" Koechlin2017-10-18 13:17:46 +0200
committerjvoisin2017-10-18 13:17:46 +0200
commit8f94a1179e9cf9d96f18ec6c851dddbecd54ea6f (patch)
tree970a0cd9f700935e4bd16e73dc630dd3e36554ab /src/sp_unserialize.c
parentda49f804ad5ae283c10ad757cd39bcc212b66f88 (diff)
.drop() is not a `nop` anymore
`.drop()` is now baillout out, instead of nop'ing the call. This closes #13
Diffstat (limited to 'src/sp_unserialize.c')
-rw-r--r--src/sp_unserialize.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_unserialize.c b/src/sp_unserialize.c
index b3dfad7..64e34a5 100644
--- a/src/sp_unserialize.c
+++ b/src/sp_unserialize.c
@@ -13,6 +13,7 @@ PHP_FUNCTION(sp_serialize) {
13 sp_log_err("disabled_functions", 13 sp_log_err("disabled_functions",
14 "Unable to find the pointer to the original function 'serialize' in " 14 "Unable to find the pointer to the original function 'serialize' in "
15 "the hashtable.\n"); 15 "the hashtable.\n");
16 return;
16 } 17 }
17 18
18 /* Compute the HMAC of the textual representation of the serialized data*/ 19 /* Compute the HMAC of the textual representation of the serialized data*/