From: Mikko Rasa Date: Tue, 21 Aug 2012 21:26:58 +0000 (+0300) Subject: Fix an off-by-one error in buffer allocation X-Git-Url: http://git.tdb.fi/?p=ext%2Fsubsurface.git;a=commitdiff_plain;h=c6be2404dafcb5032f8e35d31bca570f0ae80ef6 Fix an off-by-one error in buffer allocation Signed-off-by: Mikko Rasa --- diff --git a/gtk-gui.c b/gtk-gui.c index 306e1a5..ac80a47 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -223,7 +223,7 @@ static gboolean ask_save_changes() label = gtk_label_new ( "You have unsaved changes\nWould you like to save those before exiting the program?"); } else { - char *label_text = (char*) malloc(sizeof(char) * (92 + strlen(existing_filename))); + char *label_text = (char*) malloc(sizeof(char) * (93 + strlen(existing_filename))); sprintf(label_text, "You have unsaved changes to file: %s \nWould you like to save those before exiting the program?", existing_filename);