SHA256
1
0
forked from pool/doxygen
doxygen/doxygen-1.7.0-warnings.patch

14 lines
480 B
Diff
Raw Normal View History

Index: src/util.cpp
===================================================================
--- src/util.cpp.orig
+++ src/util.cpp
@@ -4834,7 +4834,7 @@ QCString escapeCharsInString(const char
case '=': growBuf.addStr("_0A"); break;
case '$': growBuf.addStr("_0B"); break;
default:
- if (c<0)
+ if ((unsigned char)c>0x7f)
{
static char map[] = "0123456789ABCDEF";
char ids[5];