use the correct size for snprintf

This commit is contained in:
BLINDAUER Emmanuel 2016-12-14 07:16:06 +01:00
parent 0aa4b85f81
commit 16b6471d88

View File

@ -443,7 +443,7 @@ session_start_fork(tbus data, tui8 type, struct SCP_SESSION *s)
time_t ltime; time_t ltime;
char cookie[33]; /* the cookie which will be used for xauth */ char cookie[33]; /* the cookie which will be used for xauth */
char cookie_tmpval; /* Used to fill the cookie with random values */ char cookie_tmpval; /* Used to fill the cookie with random values */
char authfile[255]; /* The filename for storing xauth informations */ char authfile[256]; /* The filename for storing xauth informations */
/* initialize (zero out) local variables: */ /* initialize (zero out) local variables: */
g_memset(&ltime, 0, sizeof(time_t)); g_memset(&ltime, 0, sizeof(time_t));
@ -686,7 +686,7 @@ session_start_fork(tbus data, tui8 type, struct SCP_SESSION *s)
} }
else else
{ {
g_snprintf(authfile, 11, "%s", ".Xauthority"); g_snprintf(authfile, 12, "%s", ".Xauthority");
} }
/* Create the cookie */ /* Create the cookie */