mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
Mps br/timing (fix warnings "... may be used uninitialized"):
trace.c, tract.c: initialise variable to NULL Copied from Perforce Change: 167191 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
7cc4b77b6a
commit
b27e4ff179
2 changed files with 2 additions and 2 deletions
|
|
@ -1720,7 +1720,7 @@ void TraceQuantum(Trace trace)
|
|||
|
||||
Res TraceStartCollectAll(Trace *traceReturn, Arena arena, int why)
|
||||
{
|
||||
Trace trace;
|
||||
Trace trace = NULL;
|
||||
Res res;
|
||||
double finishingTime;
|
||||
|
||||
|
|
|
|||
|
|
@ -441,7 +441,7 @@ Bool TractOfAddr(Tract *tractReturn, Arena arena, Addr addr)
|
|||
|
||||
Tract TractOfBaseAddr(Arena arena, Addr addr)
|
||||
{
|
||||
Tract tract;
|
||||
Tract tract = NULL;
|
||||
Bool found;
|
||||
|
||||
AVERT_CRITICAL(Arena, arena);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue