diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/treeview.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/treeview.c b/src/treeview.c index 459316190..0a3f94267 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -133,6 +133,7 @@ void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ */ void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){ int i; + if( pSrc==0 ) return; for(i=0; i<pSrc->nSrc; i++){ const SrcItem *pItem = &pSrc->a[i]; StrAccum x; |