]> git.wh0rd.org Git - nano.git/commitdiff
improve assertion
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 8 Nov 2004 03:19:10 +0000 (03:19 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 8 Nov 2004 03:19:10 +0000 (03:19 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2087 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index 845e60236e484a3a3d744d164d7d793f0573ad23..b454c3f6f7cfc5d8eaa33d2139f4edc842b32ad6 100644 (file)
@@ -672,7 +672,7 @@ partition *partition_filestruct(filestruct *top, size_t top_x,
 void unpartition_filestruct(partition *p)
 {
     char *tmp;
-    assert(p != NULL);
+    assert(p != NULL && fileage != NULL && filebot != NULL);
 
     /* Reattach the line above the top of the partition, and restore the
      * text before top_x from top_data.  Free top_data when we're done