This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bbde2f
)
Add missing break in switch.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Sun, 7 Feb 2016 00:59:09 +0000
(19:59 -0500)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Sun, 7 Feb 2016 13:23:46 +0000
(08:23 -0500)
Coverity CID 135145: Missing break in switch (MISSING_BREAK)
dump.c
patch
|
blob
|
blame
|
history
diff --git
a/dump.c
b/dump.c
index
81b985f
..
bc2776a
100644
(file)
--- a/
dump.c
+++ b/
dump.c
@@
-968,6
+968,7
@@
Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o)
for (i=0; i < count; i++)
Perl_dump_indent(aTHX_ level+1, file, "%"UVuf" => 0x%"UVxf"\n",
i, items[i].uv);
+ break;
}
case OP_CONST: