From d947e05317fe7fef19c90f772ec8f458ff52b196 Mon Sep 17 00:00:00 2001 From: Arlin Davis Date: Wed, 19 May 2010 15:17:58 -0700 Subject: [PATCH] dapltest: server info devicename is not large enough for dapl_name storage Server info device name is a 80 char array but the dapl device name that is copied is 256 bytes. Increase started_server.devicename definition. Chalk one up for windows SDK OACR (auto code review). Signed-off-by: Sean Hefty --- test/dapltest/include/dapl_server_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dapltest/include/dapl_server_info.h b/test/dapltest/include/dapl_server_info.h index de038c5..898f9cc 100644 --- a/test/dapltest/include/dapl_server_info.h +++ b/test/dapltest/include/dapl_server_info.h @@ -37,7 +37,7 @@ struct started_server { - char devicename[80]; + char devicename[256]; struct started_server *next; }; -- 2.46.0