[ADVAPI32_WINETEST] test_create_delete_svc(): Fix 'account' size (#2960)

Cherry-pick
56a83c585a
This commit is contained in:
Serge Gautherie 2020-07-04 15:24:46 +02:00 committed by GitHub
parent 092e245754
commit 54e0dbe3b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ static void test_create_delete_svc(void)
SC_HANDLE scm_handle, svc_handle1, svc_handle2;
CHAR username[UNLEN + 1], domain[MAX_PATH];
DWORD user_size = UNLEN + 1;
CHAR account[UNLEN + 3];
CHAR account[MAX_PATH + UNLEN + 1];
static const CHAR servicename [] = "Winetest";
static const CHAR pathname [] = "we_dont_care.exe";
static const CHAR empty [] = "";