From 525d015984e86987ab63e1fa67a0d3127151c525 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 14 Nov 2001 23:46:41 +0000 Subject: [PATCH] Took out a redundant memory failure check. --- platform/win32.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/platform/win32.c b/platform/win32.c index 1407ae35..de0ea9c7 100644 --- a/platform/win32.c +++ b/platform/win32.c @@ -355,10 +355,7 @@ char *__PHYSFS_platformRealPath(const char *path) * We'll need to check for "." and ".." dirs, though, just in case. */ if ((path[0] == '\\') && (path[1] == '\\')) - { - BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); strcpy(retval, path); - } /* if */ else {