archrelease: copy trunk to extra-x86_64
[arch-packages.git] / gawk / trunk / 0001-Add-missing-UPREF.patch
bloba9a5cda86b32113994e9f799b46bb88deb66849c
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
3 Date: Mon, 5 Sep 2022 15:33:49 +0000
4 Subject: [PATCH] Add missing UPREF.
6 Fixes: d2e694ad66a379fa128137d19c10b77b942972f2
7 Fixes: https://bugs.gentoo.org/868567
8 Fixes: https://lists.gnu.org/archive/html/bug-gawk/2022-09/msg00006.html
9 ---
10 interpret.h | 1 +
11 1 file changed, 1 insertion(+)
13 diff --git a/interpret.h b/interpret.h
14 index 57d060e63f37..268655b2231f 100644
15 --- a/interpret.h
16 +++ b/interpret.h
17 @@ -238,6 +238,7 @@ uninitialized_scalar:
18 _("reference to uninitialized argument `%s'") :
19 _("reference to uninitialized variable `%s'"),
20 save_symbol->vname);
21 + UPREF(m);
22 PUSH(m);
23 break;