Răsfoiți Sursa

fix uninitialized mode variable in openat function

this was introduced in commit 2da3ab1382ca8e39eb1e4428103764a81fba73d3
as an oversight while making the variadic argument access conditional.

(cherry picked from commit e146e6035fecea080fb17450db3c8bb44d36e07d)
Rich Felker 10 ani în urmă
părinte
comite
e48fff8d33
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/fcntl/openat.c

+ 1 - 1
src/fcntl/openat.c

@@ -5,7 +5,7 @@
 
 int openat(int fd, const char *filename, int flags, ...)
 {
-	mode_t mode;
+	mode_t mode = 0;
 
 	if ((flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE) {
 		va_list ap;