Skip to content

Commit

Permalink
[Decode] Fix class member variable initialization issue (#5594)
Browse files Browse the repository at this point in the history
Initialize variables of class PerfUtility

Co-authored-by: chuanli1 <[email protected]>
  • Loading branch information
gfxVPLsdm and chuanli1 authored Aug 9, 2023
1 parent 53191ae commit 66f0e8c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _studio/shared/mfx_logging/src/mfx_utils_perf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ PerfUtility* PerfUtility::getInstance()

PerfUtility::PerfUtility()
{
int32_t dwPerfUtilityIsEnabled = 0;
double timeStamp = 0;
dwPerfUtilityIsEnabled = 0;
timeStamp = 0;
perfFilePath = "Initialize";
}

PerfUtility::~PerfUtility()
Expand Down

0 comments on commit 66f0e8c

Please sign in to comment.