From: David Lawrence Ramsey Date: Tue, 2 Nov 2004 20:48:37 +0000 (+0000) Subject: fix crash in mallocstrncpy() call X-Git-Tag: v1.3.5~74 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=99869f54b5743127d41bbfdc7e195cfaa174eea2;p=nano.git fix crash in mallocstrncpy() call git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2046 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/search.c b/src/search.c index 185e9aa0..d7be0080 100644 --- a/src/search.c +++ b/src/search.c @@ -315,7 +315,7 @@ bool findnextstr(bool can_display_wrap, bool wholeword, bool /* If we're searching for whole words, see if this potential * match is a whole word. */ if (wholeword) { - char *word = mallocstrncpy(word, found, found_len + 1); + char *word = mallocstrncpy(NULL, found, found_len + 1); word[found_len] = '\0'; found_whole = is_whole_word(found - fileptr->data,