Commit 37fce369 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp90: Add missing break in time_get::do_get (coverity).

parent ea9253d6
......@@ -10514,6 +10514,7 @@ istreambuf_iterator_char* __thiscall time_get_char_do_get(const time_get_char *t
case 'n':
case 't':
skip_ws_char(ctype, &s);
break;
case 'p': {
BOOL pm = FALSE;
......@@ -11414,6 +11415,7 @@ istreambuf_iterator_wchar* __thiscall time_get_wchar_do_get(const time_get_wchar
case 'n':
case 't':
skip_ws_wchar(ctype, &s);
break;
case 'p': {
BOOL pm = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment