]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authormmcc@openbsd.org <mmcc@openbsd.org>
Tue, 20 Oct 2015 03:36:35 +0000 (03:36 +0000)
committerDamien Miller <djm@mindrot.org>
Sun, 25 Oct 2015 00:42:03 +0000 (11:42 +1100)
Replace a function-local allocation with stack memory.

ok djm@

Upstream-ID: c09fbbab637053a2ab9f33ca142b4e20a4c5a17e

clientloop.c

index 87ceb3dab9e6c553a2c6f628e57813645e292277..1e05cba2e9c1858153525201a6849b1a3c8c66b6 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.275 2015/07/10 06:21:53 markus Exp $ */
+/* $OpenBSD: clientloop.c,v 1.276 2015/10/20 03:36:35 mmcc Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -311,11 +311,10 @@ client_x11_get_proto(const char *display, const char *xauth_path,
        static char proto[512], data[512];
        FILE *f;
        int got_data = 0, generated = 0, do_unlink = 0, i;
-       char *xauthdir, *xauthfile;
+       char xauthdir[PATH_MAX] = "", xauthfile[PATH_MAX] = "";
        struct stat st;
        u_int now, x11_timeout_real;
 
-       xauthdir = xauthfile = NULL;
        *_proto = proto;
        *_data = data;
        proto[0] = data[0] = '\0';
@@ -343,8 +342,6 @@ client_x11_get_proto(const char *display, const char *xauth_path,
                        display = xdisplay;
                }
                if (trusted == 0) {
-                       xauthdir = xmalloc(PATH_MAX);
-                       xauthfile = xmalloc(PATH_MAX);
                        mktemp_proto(xauthdir, PATH_MAX);
                        /*
                         * The authentication cookie should briefly outlive
@@ -407,8 +404,6 @@ client_x11_get_proto(const char *display, const char *xauth_path,
                unlink(xauthfile);
                rmdir(xauthdir);
        }
-       free(xauthdir);
-       free(xauthfile);
 
        /*
         * If we didn't get authentication data, just make up some