projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
af7f9c1
)
fix buggy detection of failed glob()
Gurusamy Sarathy [Sat, 1 Aug 1998 17:50:44 +0000 (17:50 +0000)]
p4raw-id: //depot/maint-5.005/perl@1674
pp_hot.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
dd4f82b
..
d0fdbfc
100644
(file)
--- a/
pp_hot.c
+++ b/
pp_hot.c
@@
-1244,7
+1244,7
@@
do_readline(void)
IoFLAGS(io) |= IOf_START;
}
else if (type == OP_GLOB) {
- if (do_close(PL_last_in_gv, FALSE) & ~0xFF)
+ if (!do_close(PL_last_in_gv, FALSE))
warn("internal error: glob failed");
}
if (gimme == G_SCALAR) {