summaryrefslogtreecommitdiff
path: root/ext/standard/fsock.c
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2001-08-17 07:07:34 +0000
committerSterling Hughes <sterling@php.net>2001-08-17 07:07:34 +0000
commit591aba3c899f79cbe0e6fe138ed40a2a85890c38 (patch)
treecf18a9906be0cc6305c32d77ae530edbf96cadf4 /ext/standard/fsock.c
parent85255d9ee562f4c2cd079774b4cfb2328c2cb40b (diff)
downloadphp-git-591aba3c899f79cbe0e6fe138ed40a2a85890c38.tar.gz
ws fix.
Diffstat (limited to 'ext/standard/fsock.c')
-rw-r--r--ext/standard/fsock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/fsock.c b/ext/standard/fsock.c
index 6a6998a315..9ad910730b 100644
--- a/ext/standard/fsock.c
+++ b/ext/standard/fsock.c
@@ -277,8 +277,8 @@ static void php_fsockopen(INTERNAL_FUNCTION_PARAMETERS, int persistent) {
key, strlen(key) + 1, NULL);
}
- if(key)
- efree(key);
+ if (key)
+ efree(key);
ZEND_REGISTER_RESOURCE(return_value, sock, php_file_le_socket());
}