diff options
author | David Mitchell <davem@iabyn.com> | 2013-12-01 11:16:52 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2013-12-01 11:16:52 +0000 |
commit | 6fd0695329cb6bc38ec08ec9687424589587902b (patch) | |
tree | 2b1ecb492c07193052513f220d9c2efd48c3bf5f /embed.fnc | |
parent | c6865d2cad76caa20c247a9893c35afa8ba29124 (diff) | |
download | perl-6fd0695329cb6bc38ec08ec9687424589587902b.tar.gz |
don't check format args on taint_proper
My recent commit 5d37acd6b65eb enabled (among other things)
format-arg checking of taint_proper(). This was not a good idea since
taint_proper() adds extra args before it actually calls a printf-style
function. This was masked since on some gcc systems, a NULLOK format arg
disables this check.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1502,7 +1502,7 @@ EXMp |void |_invlist_dump |NN PerlIO *file|I32 level \ |NN SV* const invlist #endif Ap |void |taint_env -Afp |void |taint_proper |NULLOK const char* f|NN const char *const s +Ap |void |taint_proper |NULLOK const char* f|NN const char *const s Apd |UV |to_utf8_case |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp \ |NN SV **swashp|NN const char *normal|NULLOK const char *special Abmd |UV |to_utf8_lower |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp |