1
0
mirror of https://github.com/php/php-src.git synced 2026-04-06 15:43:13 +02:00

We do not need this TSRMLS_FETCH() call as we do not use any TSRM stuff in here, so we can get

a minor boost here in ZTS mode.
This commit is contained in:
Kalle Sommer Nielsen
2010-10-04 21:04:25 +00:00
parent 60f0599393
commit 304bc60e98

View File

@@ -48,7 +48,6 @@ mysqlnd_set_sock_no_delay(php_stream * stream)
int ret = SUCCESS;
int flag = 1;
int result = setsockopt(socketd, IPPROTO_TCP, TCP_NODELAY, (char *) &flag, sizeof(int));
TSRMLS_FETCH();
DBG_ENTER("mysqlnd_set_sock_no_delay");