Browse Source

Tools: hv: fix snprintf warning in kvp_daemon

Increase buffer size so that "_{-INT_MAX}" will fit.
Spotted by the gcc7 snprintf checker.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Olaf Hering 8 years ago
parent
commit
3619350cf0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/hv/hv_kvp_daemon.c

+ 1 - 1
tools/hv/hv_kvp_daemon.c

@@ -1136,7 +1136,7 @@ static int process_ip_string(FILE *f, char *ip_string, int type)
 	int i = 0;
 	int i = 0;
 	int j = 0;
 	int j = 0;
 	char str[256];
 	char str[256];
-	char sub_str[10];
+	char sub_str[13];
 	int offset = 0;
 	int offset = 0;
 
 
 	memset(addr, 0, sizeof(addr));
 	memset(addr, 0, sizeof(addr));