# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1050063612 0 # Node ID bab5cd8dd93fc7fba80914a9ea705502fc59960b # Parent 4029240b5e63612eab41352215ee328a6e1f9210 Forgot to free the array of pointers in the notebook control. diff -r 4029240b5e63 -r bab5cd8dd93f win/dw.c --- a/win/dw.c Fri Apr 11 11:12:06 2003 +0000 +++ b/win/dw.c Fri Apr 11 12:20:12 2003 +0000 @@ -389,6 +389,7 @@ free(array[z]); } } + free(array); } }