diff options
| author | 2022-04-03 02:03:40 +1100 | |
|---|---|---|
| committer | 2022-04-03 02:03:40 +1100 | |
| commit | 876d4f1a58c2b8c8a95fecbd4fdd4c2801e62465 (patch) | |
| tree | 2676ed3d771ac207353208f399e1df1191d82aad /src/tools/regrep.cpp | |
| parent | 5172c6297e01a3e223ecef9d42e56c302e98cba8 (diff) | |
fixed a couple of reportedly uninitiated variables in the tools.
Diffstat (limited to 'src/tools/regrep.cpp')
| -rw-r--r-- | src/tools/regrep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/regrep.cpp b/src/tools/regrep.cpp index b18b6b1383e..11f1fb861dc 100644 --- a/src/tools/regrep.cpp +++ b/src/tools/regrep.cpp @@ -727,7 +727,7 @@ static void output_report(std::string &dirname, std::string &tempheader, std::st static int compare_screenshots(summary_file *curfile) { bitmap_argb32 bitmaps[MAX_COMPARES]; - int unique[MAX_COMPARES]; + int unique[MAX_COMPARES]{}; int numunique = 0; /* iterate over all files and load their bitmaps */ |
