git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Close config file handle if the entry to unset is not found
@ 2015-08-14 19:18 Sven Strickroth
  2015-08-14 19:35 ` Eric Sunshine
  0 siblings, 1 reply; 10+ messages in thread
From: Sven Strickroth @ 2015-08-14 19:18 UTC (permalink / raw)
  To: git, gitster

Without this patch there might be open handle leaks.

Signed-off-by: Sup Yut Sum <ch3cooli@gmail.com>
Signed-off-by: Sven Strickroth <email@cs-ware.de>
---
 config.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config.c b/config.c
index 9fd275f..89b49e3 100644
--- a/config.c
+++ b/config.c
@@ -2048,6 +2048,7 @@ int git_config_set_multivar_in_file(const char *config_filename,
 		if ((store.seen == 0 && value == NULL) ||
 				(store.seen > 1 && multi_replace == 0)) {
 			ret = CONFIG_NOTHING_SET;
+			close(in_fd);
 			goto out_free;
 		}
 
-- 
Best regards,
 Sven Strickroth
 PGP key id F5A9D4C4 @ any key-server

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

end of thread, other threads:[~2015-08-14 21:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-14 19:18 [PATCH] Close config file handle if the entry to unset is not found Sven Strickroth
2015-08-14 19:35 ` Eric Sunshine
2015-08-14 19:38   ` Sven Strickroth
2015-08-14 19:44   ` [PATCH] Correctly close config file handle in case of error Sven Strickroth
2015-08-14 19:54     ` Eric Sunshine
2015-08-14 20:03       ` Sven Strickroth
2015-08-14 20:14         ` Eric Sunshine
2015-08-14 20:21           ` Sven Strickroth
2015-08-14 20:32             ` Eric Sunshine
2015-08-14 21:00             ` Junio C Hamano

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).