summaryrefslogtreecommitdiffstats
path: root/source/a/gawk/0001-Add-missing-UPREF.patch
blob: a9a5cda86b32113994e9f799b46bb88deb66849c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
Date: Mon, 5 Sep 2022 15:33:49 +0000
Subject: [PATCH] Add missing UPREF.

Fixes: d2e694ad66a379fa128137d19c10b77b942972f2
Fixes: https://bugs.gentoo.org/868567
Fixes: https://lists.gnu.org/archive/html/bug-gawk/2022-09/msg00006.html
---
 interpret.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/interpret.h b/interpret.h
index 57d060e63f37..268655b2231f 100644
--- a/interpret.h
+++ b/interpret.h
@@ -238,6 +238,7 @@ uninitialized_scalar:
 						_("reference to uninitialized argument `%s'") :
 						_("reference to uninitialized variable `%s'"),
 								save_symbol->vname);
+				UPREF(m);
 				PUSH(m);
 				break;