diff options
author | Dan Kalowsky <kalowsky@php.net> | 2002-03-06 16:15:28 +0000 |
---|---|---|
committer | Dan Kalowsky <kalowsky@php.net> | 2002-03-06 16:15:28 +0000 |
commit | 86ca867930ffded725ba27dfc8370d95e2c484b6 (patch) | |
tree | 6b1728b06699a1a4d4c74ad444d020273f2590f0 /ext/standard/html.c | |
parent | 160fe54bab5e0f87cef24c39e57aa86439b8cc5f (diff) | |
download | php-git-86ca867930ffded725ba27dfc8370d95e2c484b6.tar.gz |
quelling a warning, and ensuring now undefined behavior
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r-- | ext/standard/html.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c index 9dcba2152a..cc2999ace1 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -311,6 +311,10 @@ inline static unsigned short get_next_char(enum entity_charset charset, } break; } + default: + { + break; + } } *newpos = pos; mbseq[mbpos] = '\0'; |