patches and low-level development discussion
 help / color / mirror / code / Atom feed
* [PATCH ucspi-vsock] vsockserver: use fclose instead of close
@ 2021-03-09 15:40 Alyssa Ross
  2021-03-10 17:41 ` Cole Helbling
  0 siblings, 1 reply; 3+ messages in thread
From: Alyssa Ross @ 2021-03-09 15:40 UTC (permalink / raw)
  To: devel

stdio can buffer output, so if we close stdout without going through
stdio, there might be buffered output that is never written.
---
 vsockserver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vsockserver.c b/vsockserver.c
index dd9a74a..196056a 100644
--- a/vsockserver.c
+++ b/vsockserver.c
@@ -90,7 +90,7 @@ int main(int argc, char *argv[])
 
 	if (notify) {
 		printf("%" PRIu32 "\n", lport);
-		close(STDOUT_FILENO);
+		fclose(stdout);
 	}
 
 	setenvf("VSOCKLOCALCID", 1, "%" PRIu32, lcid);
-- 
2.30.0

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-10 22:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-09 15:40 [PATCH ucspi-vsock] vsockserver: use fclose instead of close Alyssa Ross
2021-03-10 17:41 ` Cole Helbling
2021-03-10 22:43   ` Alyssa Ross

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).