]> git.ipfire.org Git - thirdparty/git.git/commitdiff
wrapper: remove xunsetenv()
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>
Fri, 29 Oct 2021 21:27:05 +0000 (14:27 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 Oct 2021 21:59:29 +0000 (14:59 -0700)
Remove the unused wrapper function.

Reported-by: Randall S. Becker <rsbecker@nexbridge.com>
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-compat-util.h
wrapper.c

index 141bb86351e63cba6f5c92e5badfba7c78a5eb9f..d70ce142861676e271ae1920cd4aedb321d609c7 100644 (file)
@@ -879,7 +879,6 @@ char *xstrndup(const char *str, size_t len);
 void *xrealloc(void *ptr, size_t size);
 void *xcalloc(size_t nmemb, size_t size);
 void xsetenv(const char *name, const char *value, int overwrite);
-void xunsetenv(const char *name);
 void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
 const char *mmap_os_err(void);
 void *xmmap_gently(void *start, size_t length, int prot, int flags, int fd, off_t offset);
index 1460d4e27b03cc976e21581942158d16d144fc18..36e12119d76556a710dbc8da2953a4710e630fdb 100644 (file)
--- a/wrapper.c
+++ b/wrapper.c
@@ -151,12 +151,6 @@ void xsetenv(const char *name, const char *value, int overwrite)
                die_errno(_("could not setenv '%s'"), name ? name : "(null)");
 }
 
-void xunsetenv(const char *name)
-{
-       if (!unsetenv(name))
-               die_errno(_("could not unsetenv '%s'"), name ? name : "(null)");
-}
-
 /*
  * Limit size of IO chunks, because huge chunks only cause pain.  OS X
  * 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in