+void subtend_set_tainted(VALUE val) {
+ CTX;
+ object_set_tainted(ctx->state, HNDL(val));
+}
+
+int subtend_check_tainted(VALUE val) {
+ CTX;
+ return object_tainted_p(ctx->state, HNDL(val));
+}
+
|
Pastie
Support Pastie
or read my
Pastie << self
blog
+void subtend_set_tainted(VALUE val) {
+ CTX;
+ object_set_tainted(ctx->state, HNDL(val));
+}
+
+int subtend_check_tainted(VALUE val) {
+ CTX;
+ return object_tainted_p(ctx->state, HNDL(val));
+}
+
|