Skip to content
Commit fa1fbc25 authored by Damjan Georgievski's avatar Damjan Georgievski Committed by Aleix Pol Gonzalez
Browse files

fix off by one in the socket filename

from the snprintf man page:

The functions snprintf() and vsnprintf() do not write more than size bytes (*including* the terminating null byte  ('\0')).   If
the  output was truncated due to this limit, then the return value is the number of characters (*excluding* the terminating null
byte) which would have been written to the final string if enough space had been available.  Thus, a return value of  size  or
more means that the output was truncated.

pam_wallet.c should increase the needed parameter by one, to account for the terminating null byte  ('\0')

REVIEW: 129955
parent b94a6ce1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment