projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4352c26
)
Fix not-reached warning for pp_threadsv.
Malcolm Beattie [Wed, 17 Dec 1997 10:54:47 +0000 (10:54 +0000)]
p4raw-id: //depot/perl@367
pp.c
patch
|
blob
|
blame
|
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;
}