diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-29 10:26:54 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-29 10:30:40 -0400 |
commit | a1b1d0558e4f9a299f56def4b6400355a161005f (patch) | |
tree | f48514c25fa5dc3222740e0655d4c2d387c4f0a0 | |
parent | 8eafc6eb8a6926872a35c0af0f4cf25645edbec9 (diff) | |
download | perl-a1b1d0558e4f9a299f56def4b6400355a161005f.tar.gz |
Unused dTHX, even under threads.
[perl #121882].
Fix for Coverity perl5 CID 49935:
Unused pointer value (UNUSED_VALUE)
returned_pointer: Pointer my_perl returned by
pthread_getspecific(PL_thr_key) is never used.
-rw-r--r-- | ext/XS-APItest/APItest.xs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs index f741664d46..fb5e3662dc 100644 --- a/ext/XS-APItest/APItest.xs +++ b/ext/XS-APItest/APItest.xs @@ -83,7 +83,6 @@ typedef void (freeent_function)(pTHX_ HV *, HE *); void test_freeent(freeent_function *f) { - dTHX; dSP; HV *test_hash = newHV(); HE *victim; |