projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
569d4c7
)
Pacify GCC 12 in dump_queue_enqueue
author
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 31 May 2022 08:19:32 +0000
(
01:19
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 31 May 2022 08:26:47 +0000
(
01:26
-0700)
* src/pdumper.c (dump_queue_enqueue): Use BASE_EQ, not EQ.
This pacifies GCC 12 -Wanalyzer-null-dereference.
src/pdumper.c
patch
|
blob
|
history
diff --git
a/src/pdumper.c
b/src/pdumper.c
index 88e7b311a89c61c048ed722972686d2f20523919..0efd5cfb0bbc83605dc9d3fd3e829d472ef178e8 100644
(file)
--- a/
src/pdumper.c
+++ b/
src/pdumper.c
@@
-1069,7
+1069,7
@@
dump_queue_enqueue (struct dump_queue *dump_queue,
}
}
- if (!EQ (weights, orig_weights))
+ if (!
BASE_
EQ (weights, orig_weights))
Fputhash (object, weights, dump_queue->link_weights);
}