Fix uninitialized variable when call pinentry without description
This commit is contained in:
parent
a1e86f9bb1
commit
99bab97ea7
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ insert(const char *str, ssize_t n) {
|
|||
static void
|
||||
drawwin(void) {
|
||||
unsigned int curpos;
|
||||
int x = 0, pb = 0, pbw, i;
|
||||
int x = 0, pb = 0, pbw = 0, i;
|
||||
size_t asterlen = strlen(asterisk);
|
||||
size_t pdesclen;
|
||||
char* censort = ecalloc(1, asterlen * sizeof(text));
|
||||
|
|
Loading…
Reference in a new issue