Re: mshtml: Use wininet to get and parse the proxy (try 2)

2011-08-22 Thread Dmitry Timoshkov
André Hentschel wrote: > please ignore also that one. APPINFO_QueryOption needs to be fixed first And there's still a leak there. -- Dmitry.

Re: mshtml: Use wininet to get and parse the proxy (try 2)

2011-08-20 Thread André Hentschel
please ignore also that one. APPINFO_QueryOption needs to be fixed first Am 20.08.2011 17:19, schrieb André Hentschel: > > fixed the leak > --- > dlls/mshtml/nsembed.c | 62 +++- > 1 files changed, 30 insertions(+), 32 deletions(-) > > diff --git a/

Re: mshtml: Use wininet to get and parse the proxy

2011-08-19 Thread Dmitry Timoshkov
André Hentschel wrote: > +if(!InternetCrackUrlA(pi->lpszProxy, 0, 0, &UrlComponents)) return; > +heap_free(pi); If InternetCrackUrlA() fails pi is leaked. -- Dmitry.