Skip to content

Commit

Permalink
Fix missing va_end call in SYSLOG
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed Nov 5, 2017
1 parent 1478754 commit 86acf2f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions SparkleAutoUpdater.mm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ static void SYSLOG(const char* format,...)
va_list vaList;
va_start( vaList,format );
vsyslog(LOG_ERR,format,vaList);
va_end(vaList);
}

class SparkleAutoUpdater::Private
Expand Down

0 comments on commit 86acf2f

Please sign in to comment.