projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4352c26
)
Fix not-reached warning for pp_threadsv.
author
Malcolm Beattie
<mbeattie@sable.ox.ac.uk>
Wed, 17 Dec 1997 10:54:47 +0000
(10:54 +0000)
committer
Malcolm Beattie
<mbeattie@sable.ox.ac.uk>
Wed, 17 Dec 1997 10:54:47 +0000
(10:54 +0000)
p4raw-id: //depot/perl@367
pp.c
patch
|
blob
|
history
diff --git
a/pp.c
b/pp.c
index
8fbe61d
..
3934984
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-4315,8
+4315,8
@@
PP(pp_threadsv)
PUSHs(*save_threadsv(op->op_targ));
else
PUSHs(*av_fetch(thr->threadsv, op->op_targ, FALSE));
+ RETURN;
#else
DIE("tried to access per-thread data in non-threaded perl");
#endif /* USE_THREADS */
- RETURN;
}