]> git.wh0rd.org Git - nano.git/commitdiff
Type misalignments and mem leaks in renumber_all, do_justify and do_spell (Rocco...
authorChris Allegretta <chrisa@asty.org>
Wed, 6 Mar 2002 03:30:40 +0000 (03:30 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 6 Mar 2002 03:30:40 +0000 (03:30 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1108 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
nano.c

index a51fe8411c19cbcbedfd3bf27db2245fe215592f..9a2b911fa2a23ba2ab80cc794d3c58be53f5027d 100644 (file)
--- 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
index bffdc5c48345be05fc4749a568635ce33b4c6273..522521af8c6fbbc0b5d0f627b1edfba2db5b8dbd 100644 (file)
--- 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;