We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 164cd3c commit b3c77b5Copy full SHA for b3c77b5
src/jrd/trace/TraceObjects.cpp
@@ -89,7 +89,7 @@ bool descToUTF8(const dsc* param, string& result)
89
90
char* hex = result.getBuffer(length * 2);
91
92
- for (UCHAR* p = address; p < address + length; p++)
+ for (const UCHAR* p = address; p < address + length; p++)
93
{
94
UCHAR c = (*p & 0xF0) >> 4;
95
*hex++ = c + (c < 10 ? '0' : 'A' - 10);
0 commit comments