mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-28 11:55:03 +03:00 
			
		
		
		
	Close socket in case of errors in setting non-blocking
If configuring the newly created socket non-blocking fails we error out and return INVALID_SOCKET, but the socket that had been created wasn't closed. Fix by issuing closesocket in the errorpath. Backpatch to all supported branches. Author: Ranier Vilela <ranier.vf@gmail.com> Discussion: https://postgr.es/m/CAEudQApmU5CrKefH85VbNYE2y8H=-qqEJbg6RAPU65+vCe+89A@mail.gmail.com Backpatch-through: v12
This commit is contained in:
		| @@ -290,6 +290,7 @@ pgwin32_socket(int af, int type, int protocol) | |||||||
| 	if (ioctlsocket(s, FIONBIO, &on)) | 	if (ioctlsocket(s, FIONBIO, &on)) | ||||||
| 	{ | 	{ | ||||||
| 		TranslateSocketError(); | 		TranslateSocketError(); | ||||||
|  | 		closesocket(s); | ||||||
| 		return INVALID_SOCKET; | 		return INVALID_SOCKET; | ||||||
| 	} | 	} | ||||||
| 	errno = 0; | 	errno = 0; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user