# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1050681624 0 # Node ID fb2667339e9fda16601658de9f545ed582cc1200 # Parent 3a71623fc21988bc5fdc6020f55c089d2b21b478 Guess I should probably make sure they are trying to load a file with Web Explorer before applying the fix. diff -r 3a71623fc219 -r fb2667339e9f os2/dw.c --- a/os2/dw.c Fri Apr 18 09:28:27 2003 +0000 +++ b/os2/dw.c Fri Apr 18 16:00:24 2003 +0000 @@ -7830,7 +7830,7 @@ */ if(len > 0) { - if(stricmp(&browser[len], "explore.exe") == 0) + if(stricmp(&browser[len], "explore.exe") == 0 && stricmp(url, "file://") == 0) { int newlen, z; newurl = malloc(strlen(url) + 2);