commit bef1297c6d8452a6bf8d6911dc43e4d9e8672050
parent 26d59eae5f0687d55d3039852137f1d9c450bf4d
Author: Chris Allegretta <chrisa@asty.org>
Date: Wed, 6 Mar 2002 03:30:40 +0000
Type misalignments and mem leaks in renumber_all, do_justify and do_spell (Rocco & Steven Kneizys)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1108 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,8 @@
CVS code -
-
+- General
+ - Type misalignments and mem leaks in renumber_all, do_justify
+ and do_spell (Rocco & Steven Kneizys).
+
GNU nano 1.1.7 - 03/05/2002
- General
- malloc->calloc, etc cleanups (DLR).
diff --git a/nano.c b/nano.c
@@ -367,7 +367,7 @@ int free_filestruct(filestruct * src)
int renumber_all(void)
{
filestruct *temp;
- long i = 1;
+ int i = 1;
for (temp = fileage; temp != NULL; temp = temp->next) {
temp->lineno = i++;
@@ -1524,8 +1524,9 @@ int do_int_spell_fix(char *word)
}
/* restore the search/replace strings */
- last_search = mallocstrcpy(last_search, save_search);
- last_replace = mallocstrcpy(last_replace, save_replace);
+ free(last_search); last_search=save_search;
+ free(last_replace); last_replace=save_replace;
+ free(prevanswer);
/* restore where we were */
current = begin;
@@ -1755,6 +1756,7 @@ int do_spell(void)
if (write_file(temp, 1, 0, 0) == -1) {
statusbar(_("Spell checking failed: unable to write temp file!"));
+ free(temp);
return 0;
}
@@ -1777,6 +1779,7 @@ int do_spell(void)
else
statusbar(_("Spell checking failed"));
+ free(temp);
return spell_res;
#endif
@@ -2237,7 +2240,8 @@ int do_justify(void)
return 1;
#else
int slen = 0; /* length of combined lines on one line. */
- int initial_y, kbinput = 0, totbak;
+ int initial_y, kbinput = 0;
+ long totbak;
filestruct *initial = NULL, *tmpjust = NULL, *cutbak, *tmptop, *tmpbot;
filestruct *samecheck = current;
int qdepth = 0;