From d3f7f5ebb6ff689d049c08053aa981d8164f73cc Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Mon, 8 Dec 2008 12:35:43 +0100 Subject: [PATCH] winhttp: Prepend slash to request path if necessary. --- dlls/winhttp/session.c | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/dlls/winhttp/session.c b/dlls/winhttp/session.c index 545ed04ee1..032807a56f 100644 --- a/dlls/winhttp/session.c +++ b/dlls/winhttp/session.c @@ -468,11 +468,24 @@ HINTERNET WINAPI WinHttpOpenRequest( HINTERNET hconnect, LPCWSTR verb, LPCWSTR o if (!netconn_init( &request->netconn, request->hdr.flags & WINHTTP_FLAG_SECURE )) goto end; if (!verb || !verb[0]) verb = getW; - if (!object || !object[0]) object = slashW; - if (!version || !version[0]) version = http1_1; - if (!(request->verb = strdupW( verb ))) goto end; - if (!(request->path = strdupW( object ))) goto end; + + if (object) + { + WCHAR *path, *p; + unsigned int len; + + len = strlenW( object ) + 1; + if (object[0] != '/') len++; + if (!(p = path = heap_alloc( len * sizeof(WCHAR) ))) goto end; + + if (object[0] != '/') *p++ = '/'; + strcpyW( p, object ); + request->path = path; + } + else if (!(request->path = strdupW( slashW ))) goto end; + + if (!version || !version[0]) version = http1_1; if (!(request->version = strdupW( version ))) goto end; if (!(hrequest = alloc_handle( &request->hdr ))) goto end; -- 2.32.0.93.g670b81a890