From 4440d3897e62ae2504d0979e025816a4a1fc7e3c Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Sun, 12 Jun 2005 00:59:04 +0000 Subject: [PATCH] Removed bogus fix for bug #28355 (it was dead code anyway) --- ext/standard/dir.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/standard/dir.c b/ext/standard/dir.c index 227173d5b4..7c5ffb4dbe 100644 --- a/ext/standard/dir.c +++ b/ext/standard/dir.c @@ -399,9 +399,6 @@ PHP_FUNCTION(glob) * doesn't. This ensure that if no match is found, an empty array * is always returned so it can be used without worrying in e.g. * foreach() */ -#ifndef __linux__ - RETURN_FALSE; -#else array_init(return_value); return; #endif -- 2.50.1