wok diff BootProg/stuff/boot32.asm @ rev 25463

Up expat (2.4.9) fixes CVE-2022-40674
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 29 20:05:23 2022 +0000 (19 months ago)
parents 7dd01dedad38
children 4c101652eb90
line diff
     1.1 --- a/BootProg/stuff/boot32.asm	Wed Sep 28 08:10:35 2022 +0000
     1.2 +++ b/BootProg/stuff/boot32.asm	Thu Sep 29 20:05:23 2022 +0000
     1.3 @@ -556,9 +556,8 @@
     1.4  ;; Name of the file to load and run ;;
     1.5  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
     1.6  
     1.7 -ProgramName     db      "STARTUP BIN"   ; name and extension each must be
     1.8 -                times (510-($-$$)) db ' ' ; padded with spaces (11 bytes total)
     1.9 -NameLength      equ     $-ProgramName
    1.10 +NameLength      equ   11
    1.11 +ProgramName     times NameLength db 0   ; name and extension
    1.12  
    1.13  ;;;;;;;;;;;;;;;;;;;;;;;;;;
    1.14  ;; End of the sector ID ;;