From 51dd32fb4edc5efe5d6e7d287cd9d96470451165 Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Tue, 16 Jan 2001 04:20:08 +0000 Subject: [PATCH] Changed null out at end of matchBuf from NULL to 0 git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@483 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 2 +- files.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ffdd06f8..d8e010c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -28,7 +28,7 @@ General - Added space and - keys to do page up and down. cwd_tab_completion(), input_tab() - Changed bare malloc/calloc calls to nmalloc (found by Rocco). - - Added null end of tmpBuf for sanity (Rocco). + - Added zero end of tmpBuf for sanity (Rocco). - nano.c: ABCD() - New function, figures out what kbinput to return given diff --git a/files.c b/files.c index 8248f498..6b5a9d2b 100644 --- a/files.c +++ b/files.c @@ -885,7 +885,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) matchBuf = (char *) nmalloc((strlen(buf) + 2) * sizeof(char)); strncpy(matchBuf, buf, place); - matchBuf[place] = (char) NULL; + matchBuf[place] = 0; tmp = matchBuf; /* skip any leading white space */ -- 2.39.5