1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add missing break

pointed out by Coverity Scan
This commit is contained in:
Kazuhiro NISHIYAMA 2020-09-11 11:01:30 +09:00
parent d55c914f0f
commit 406559a268
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

View file

@ -191,6 +191,7 @@ dump_append_string_value(struct dump_config *dc, VALUE obj)
switch ((c = value[i])) {
case '\\':
dump_append(dc, "\\\\");
break;
case '"':
dump_append(dc, "\\\"");
break;