summaryrefslogtreecommitdiffstats
path: root/generic/tkVisual.c
diff options
context:
space:
mode:
authordas <das>2009-09-07 07:29:03 (GMT)
committerdas <das>2009-09-07 07:29:03 (GMT)
commitb1a164c0a1f1822b82ed874aa176a5e3da80122e (patch)
tree482f0c745521d3a4c67098b23132148476c35fbc /generic/tkVisual.c
parent71419c7600e07b055614f65a8617ff25e63c1603 (diff)
downloadtk-b1a164c0a1f1822b82ed874aa176a5e3da80122e.zip
tk-b1a164c0a1f1822b82ed874aa176a5e3da80122e.tar.gz
tk-b1a164c0a1f1822b82ed874aa176a5e3da80122e.tar.bz2
* generic/tkFocus.c: fix potential null dereference flagged by clang
* generic/tkMenu.c: static analyzer. * generic/tkTextBTree.c: * generic/tkTextDisp.c: * generic/tkTextIndex.c: * generic/tkConsole.c: silence false positives from clang static * generic/tkTest.c: analyzer about potential null dereference. * generic/tkText.c: * generic/tkTextBTree.c: * generic/tkTextTag.c: * generic/tkVisual.c:
Diffstat (limited to 'generic/tkVisual.c')
-rw-r--r--generic/tkVisual.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkVisual.c b/generic/tkVisual.c
index c2a9622..8665636 100644
--- a/generic/tkVisual.c
+++ b/generic/tkVisual.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkVisual.c,v 1.12 2008/10/28 22:33:06 nijtmans Exp $
+ * RCS: @(#) $Id: tkVisual.c,v 1.13 2009/09/07 07:29:04 das Exp $
*/
#include "tkInt.h"
@@ -303,6 +303,7 @@ Tk_GetVisual(
bestPtr = &visInfoList[i];
bestPrio = prio;
}
+ CLANG_ASSERT(bestPtr);
*depthPtr = bestPtr->depth;
visual = bestPtr->visual;
XFree((char *) visInfoList);