From: Alex Henrie alexhenrie24@gmail.com
--- dlls/winspool.drv/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winspool.drv/info.c b/dlls/winspool.drv/info.c index bc55d7f6d73..9ce3125787f 100644 --- a/dlls/winspool.drv/info.c +++ b/dlls/winspool.drv/info.c @@ -887,7 +887,7 @@ static LPWSTR get_servername_from_name(LPCWSTR name) if (name == NULL) return NULL; if ((name[0] != '\') || (name[1] != '\')) return NULL;
- server = wcsdup(&name[2]); /* skip over both backslash */ + server = wcsdup(&name[2]); /* skip over both backslashes */ if (server == NULL) return NULL;
/* strip '' and the printername */
This merge request was approved by Huw Davies.