From 371ace39b54266b9833d90d9d8e863b8bea3ac8f Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 14 Dec 2012 07:24:08 -1000 Subject: [PATCH] Fix possible crash in nickname code Silly typo, but this is the better solution, anyway. Reported-by: Henrik Brautaset Aronsen ` Signed-off-by: Dirk Hohndel --- gtk-gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk-gui.c b/gtk-gui.c index 18a022c9d..f3646b0ff 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -2091,7 +2091,7 @@ void set_dc_nickname(struct dive *dive) entry = gtk_entry_new(); gtk_container_add(GTK_CONTAINER(frame), entry); gtk_entry_set_max_length(GTK_ENTRY(entry), 68); - snprintf(nickname, 69, "%s (%08x)", dive->dc.model, dive->dc.deviceid); + snprintf(nickname, sizeof(nickname), "%s (%08x)", dive->dc.model, dive->dc.deviceid); gtk_entry_set_text(GTK_ENTRY(entry), nickname); gtk_widget_show_all(dialog); if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {