From 9339e963b8a8f200a6e18619c851f1ffa7c5386e Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 8 Feb 2008 10:48:42 -0800 Subject: [PATCH] Zero-terminate "aborted." string. The string "aborted." was missing a null terminator. --- abort.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abort.inc b/abort.inc index afbb547..0f44382 100644 --- a/abort.inc +++ b/abort.inc @@ -65,6 +65,6 @@ error_or_command: jmp enter_command section .data -aborted_msg db ' aborted.', CR, LF +aborted_msg db ' aborted.', CR, LF, 0 section .text -- 2.7.4