v20231113-0004-fix-uninitialize-is_include-variable-runtime-error-l.patch
text/x-patch
Filename: v20231113-0004-fix-uninitialize-is_include-variable-runtime-error-l.patch
Type: text/x-patch
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v20231113-0004
Subject: fix uninitialize is_include variable, runtime error: load of value 86, which is not a valid value for type '_Bool'
| File | + | − |
|---|---|---|
| src/bin/pg_dump/filter.c | 1 | 0 |
From 235bcd7944e99468c3fe6a65ca5490883b983a70 Mon Sep 17 00:00:00 2001
From: "okbob@github.com" <pavel.stehule@gmail.com>
Date: Mon, 13 Nov 2023 14:10:49 +0100
Subject: [PATCH 4/4] fix uninitialize is_include variable, runtime error: load
of value 86, which is not a valid value for type '_Bool'
---
src/bin/pg_dump/filter.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/bin/pg_dump/filter.c b/src/bin/pg_dump/filter.c
index 46970a57e3..2d724b1b35 100644
--- a/src/bin/pg_dump/filter.c
+++ b/src/bin/pg_dump/filter.c
@@ -455,6 +455,7 @@ filter_read_item(FilterStateData *fstate,
else
{
*objname = NULL;
+ *is_include = false;
*objtype = FILTER_OBJECT_TYPE_NONE;
}
--
2.41.0