diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2022-06-13 13:37:37 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2022-06-13 13:39:48 -0700 |
commit | 24b2cc177acd47fdac15db1fa73afbc412eb1e0a (patch) | |
tree | 0085f0325fe72f86df1616ed0863a75f7b6235b7 /src/xfont.c | |
parent | de6601e62efd959cf74455cfd8030f60448cd713 (diff) | |
download | emacs-24b2cc177acd47fdac15db1fa73afbc412eb1e0a.tar.gz emacs-24b2cc177acd47fdac15db1fa73afbc412eb1e0a.tar.bz2 emacs-24b2cc177acd47fdac15db1fa73afbc412eb1e0a.zip |
Pacify GCC 12.1.1 -Wanalyzer-use-of-uninitialized-value
* src/xfont.c (xfont_list_pattern): Initialize a local.
Although I’m not sure this is needed, it doesn’t change
behavior (except possibly to make undefined behavior defined).
Diffstat (limited to 'src/xfont.c')
-rw-r--r-- | src/xfont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfont.c b/src/xfont.c index 684c28ab21a..74237e8aa88 100644 --- a/src/xfont.c +++ b/src/xfont.c @@ -295,7 +295,7 @@ xfont_list_pattern (Display *display, const char *pattern, { Lisp_Object list = Qnil; Lisp_Object chars = Qnil; - struct charset *encoding, *repertory = NULL; + struct charset *encoding = NULL, *repertory = NULL; int i, limit, num_fonts; char **names; /* Large enough to decode the longest XLFD (255 bytes). */ |