PR5462: Don't run off the edge of the argument array for vararg handling

when there are more parameters in the prototype than arguments to the call.

llvm-svn: 88759
This commit is contained in:
Eli Friedman 2009-11-14 04:43:10 +00:00
parent 6c39d457fa
commit a9ea959d04
2 changed files with 11 additions and 1 deletions

View File

@ -2679,7 +2679,7 @@ Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
CallType = VariadicMethod;
// Promote the arguments (C99 6.5.2.2p7).
for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
for (unsigned i = NumArgsInProto; i < NumArgs; i++) {
Expr *Arg = Args[i];
Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Call->setArg(i, Arg);

View File

@ -0,0 +1,10 @@
// RUN: clang-cc %s -verify -fsyntax-only
// PR5462
void f1(void);
void f2(const char * = __null, ...);
void f1(void)
{
f2();
}