diff options
author | das <das> | 2009-02-06 08:13:23 (GMT) |
---|---|---|
committer | das <das> | 2009-02-06 08:13:23 (GMT) |
commit | a1bbe8d7237c4d3eb78f0e1b73ee8e1c15ee0fb6 (patch) | |
tree | 44f593df44065d8dcb637789eb6a8916b17c1726 /generic/tkUndo.c | |
parent | c92a226958ca1cf6a430aee5faf782c8a324c82e (diff) | |
download | tk-a1bbe8d7237c4d3eb78f0e1b73ee8e1c15ee0fb6.zip tk-a1bbe8d7237c4d3eb78f0e1b73ee8e1c15ee0fb6.tar.gz tk-a1bbe8d7237c4d3eb78f0e1b73ee8e1c15ee0fb6.tar.bz2 |
* generic/tkImgPhoto.c: fix numerous leaks discovered with the
* generic/tkMenu.c: Mac OS X Instruments.app Leaks tool.
* generic/tkText.c:
* generic/tkTextImage.c:
* generic/tkTextIndex.c:
* generic/tkUndo.c:
* generic/ttk/ttkFrame.c:
* macosx/tkMacOSXWm.c:
Diffstat (limited to 'generic/tkUndo.c')
-rw-r--r-- | generic/tkUndo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tkUndo.c b/generic/tkUndo.c index e875bf3..326c818 100644 --- a/generic/tkUndo.c +++ b/generic/tkUndo.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUndo.c,v 1.13 2007/12/13 15:24:21 dgp Exp $ + * RCS: @(#) $Id: tkUndo.c,v 1.13.2.1 2009/02/06 08:13:23 das Exp $ */ #include "tkInt.h" @@ -131,7 +131,7 @@ TkUndoClearStack( TkUndoSubAtom *sub; sub = elem->apply; - while (sub->next != NULL) { + while (sub != NULL) { TkUndoSubAtom *next = sub->next; if (sub->action != NULL) { @@ -142,7 +142,7 @@ TkUndoClearStack( } sub = elem->revert; - while (sub->next != NULL) { + while (sub != NULL) { TkUndoSubAtom *next = sub->next; if (sub->action != NULL) { @@ -399,7 +399,7 @@ TkUndoSetDepth( prevelem = elem; if (elem->type != TK_UNDO_SEPARATOR) { TkUndoSubAtom *sub = elem->apply; - while (sub->next != NULL) { + while (sub != NULL) { TkUndoSubAtom *next = sub->next; if (sub->action != NULL) { @@ -409,7 +409,7 @@ TkUndoSetDepth( sub = next; } sub = elem->revert; - while (sub->next != NULL) { + while (sub != NULL) { TkUndoSubAtom *next = sub->next; if (sub->action != NULL) { |