Skip to content

Commit

Permalink
fix uninitialized locals
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Jun 18, 2013
1 parent 984f155 commit 0a00b8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/func.c
Expand Up @@ -3755,8 +3755,8 @@ bool FuncDeclaration::hasNestedFrameRefs()
*/

Parameters *FuncDeclaration::getParameters(int *pvarargs)
{ Parameters *fparameters;
int fvarargs;
{ Parameters *fparameters = NULL;
int fvarargs = 0;

if (type)
{
Expand Down

0 comments on commit 0a00b8e

Please sign in to comment.