Skip to content

Commit 4c73aa1

Browse files
brammooldouglaskayama
authored andcommitted
patch 7.4.701 Problem: Compiler warning for using uninitialized variable. (Yasuhiro Matsumoto) Solution: Initialize it.
1 parent 1f0ec6a commit 4c73aa1

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/hardcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2513,7 +2513,7 @@ mch_print_init(psettings, jobname, forceit)
25132513
props = enc_canon_props(p_encoding);
25142514
if (!(props & ENC_8BIT) && ((*p_pmcs != NUL) || !(props & ENC_UNICODE)))
25152515
{
2516-
int cmap_first;
2516+
int cmap_first = 0;
25172517

25182518
p_mbenc_first = NULL;
25192519
for (cmap = 0; cmap < (int)NUM_ELEMENTS(prt_ps_mbfonts); cmap++)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,8 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
701,
759761
/**/
760762
700,
761763
/**/

0 commit comments

Comments
 (0)