Mercurial > vim
view src/xxd/Make_vms.mms @ 24118:1027495445bc v8.2.2600
patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionary
Commit: https://github.com/vim/vim/commit/93e1cae739c32baf28954b64718bab009c6ee2ac
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 13 21:24:56 2021 +0100
patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionary
Problem: Vim9: crash when putting an unknown type in a dictionary.
(Yegappan Lakshmanan)
Solution: Handle a NULL type pointer.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 13 Mar 2021 21:30:03 +0100 |
parents | 4481f3b29fc5 |
children |
line wrap: on
line source
# VMS MM[KS] makefile for XXD # tested with MMK and MMS as well. # # Maintained by Zoltan Arpadffy <arpadffy@polarhome.com> # # Edit the lines in the Configuration section below to select. # # To build: use the following command line: # # mms/descrip=Make_vms.mms # or if you use mmk # mmk/descrip=Make_vms.mms # # To cleanup: mms/descrip=Make_vms.mms clean # ###################################################################### # Configuration section. ###################################################################### # Compiler selection. # Comment out if you use the VAXC compiler ###################################################################### # DECC = YES ##################################################################### # Uncomment if want a debug version. Resulting executable is DVIM.EXE ###################################################################### # DEBUG = YES ###################################################################### # End of configuration section. # # Please, do not change anything below without programming experience. ###################################################################### CC = cc .IFDEF DECC CC_DEF = $(CC)/decc PREFIX = /prefix=all .ELSE CC_DEF = $(CC) PREFIX = .ENDIF LD_DEF = link .IFDEF DEBUG TARGET = dxxd.exe CFLAGS = /debug/noopt$(PREFIX)/cross_reference/include=[] LDFLAGS = /debug .ELSE TARGET = xxd.exe CFLAGS = /opt$(PREFIX)/include=[] LDFLAGS = .ENDIF .SUFFIXES : .obj .c SOURCES = xxd.c OBJ = xxd.obj .c.obj : $(CC_DEF) $(CFLAGS) $< $(TARGET) : $(OBJ) $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ clean : -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* xxd.obj : xxd.c