sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 4ce1ab8a2632c1676235b51b00f4469e96966c7c
parent ca400e84f538257e97d7c7f1b275b9471439e78b
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 21 Mar 2016 16:23:49 -0400

Merge pull request #527 from gkbrk/swaylock_password_grow

swaylock: Grow the password buffer
Diffstat:
Mswaylock/main.c | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/swaylock/main.c b/swaylock/main.c @@ -36,6 +36,7 @@ void sway_terminate(int exit_code) { } char *password; +int password_size; int function_conversation(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr) { @@ -101,12 +102,17 @@ void notify_key(enum wl_keyboard_key_state state, xkb_keysym_t sym, uint32_t cod if (verify_password()) { exit(0); } - password = malloc(1024); // TODO: Let this grow + password_size = 1024; + password = malloc(password_size); password[0] = '\0'; break; default: { int i = strlen(password); + if (i + 1 == password_size) { + password_size += 1024; + password = realloc(password, password_size); + } password[i] = (char)codepoint; password[i + 1] = '\0'; break; @@ -280,7 +286,8 @@ int main(int argc, char **argv) { sway_abort("Unsupported scaling mode: %s", scaling_mode_str); } - password = malloc(1024); // TODO: Let this grow + password_size = 1024; + password = malloc(password_size); password[0] = '\0'; surfaces = create_list(); registry = registry_poll();