diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-04-12 20:51:10 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-04-12 20:51:10 +0000 |
| commit | 14bdb7843057023b1847e37efbd7381a46bf6e5b (patch) | |
| tree | 50fdd9247e1f1482d81465fb9d9e6644e58b1753 /clang/lib/Sema/SemaDecl.cpp | |
| parent | 109af6232b5ec16aa9e8aa50d2f65b52efd08321 (diff) | |
| download | bcm5719-llvm-14bdb7843057023b1847e37efbd7381a46bf6e5b.tar.gz bcm5719-llvm-14bdb7843057023b1847e37efbd7381a46bf6e5b.zip | |
fix a valgrind problem I noticed while developing another patch,
if a decl is invalid, it isn't added to the Decls array, so we
need to pass in Decls.size() to avoid reading uninit memory.
llvm-svn: 68913
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 72611ef08b0..603b8b31a26 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -2620,7 +2620,7 @@ Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, DeclPtrTy *Group, } } return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, - &Decls[0], NumDecls)); + &Decls[0], Decls.size())); } |

