Zero-terminate "aborted." string.
authorH. Peter Anvin <hpa@zytor.com>
Fri, 8 Feb 2008 18:48:42 +0000 (10:48 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 8 Feb 2008 18:48:42 +0000 (10:48 -0800)
The string "aborted." was missing a null terminator.

abort.inc

index afbb547..0f44382 100644 (file)
--- 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