Commit 3d2cf6c
committed
initialize variable in tests
This was detected while running the tests with the `-Wconditional-uninitialized` flag
```
./autogen.sh
CC=clang CFLAGS="-Wconditional-uninitialized" ./configure
make check
```
The resulting warning is a false positive, but setting the value to -1
ensures that the CHECK below will fail if recid is never written to.1 parent 24d1656 commit 3d2cf6c
1 file changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4324 | 4324 | | |
4325 | 4325 | | |
4326 | 4326 | | |
4327 | | - | |
4328 | 4327 | | |
| 4328 | + | |
| 4329 | + | |
| 4330 | + | |
4329 | 4331 | | |
4330 | 4332 | | |
4331 | 4333 | | |
| |||
0 commit comments