changeset 356:fb2667339e9f

Guess I should probably make sure they are trying to load a file with Web Explorer before applying the fix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 18 Apr 2003 16:00:24 +0000
parents 3a71623fc219
children 5df54ebc44dd
files os2/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);