Commit 1c232557 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dnsapi: Increase buffer size to fix format-overflow warning.

parent 3d19efae
......@@ -71,7 +71,7 @@ static const char *dns_section_to_str( ns_sect section )
case ns_s_ar: return "Additional";
default:
{
static char tmp[5];
static char tmp[11];
FIXME( "unknown section: 0x%02x\n", section );
sprintf( tmp, "0x%02x", section );
return tmp;
......
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