BUG #18848: DEREF_AFTER_NULL.EX.COND After having been compared to a NULL - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #18848: DEREF_AFTER_NULL.EX.COND After having been compared to a NULL
Date
Msg-id 18848-62f448851e967b5c@postgresql.org
Whole thread Raw
Responses Re: BUG #18848: DEREF_AFTER_NULL.EX.COND After having been compared to a NULL
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18848
Logged by:          Nikita
Email address:      pm91.arapov@gmail.com
PostgreSQL version: 16.6
Operating system:   ubuntu 20.04
Description:

Looks like there is inconsistency with 'ind_name' and 'int_type' checks. In
one place both are checked. In other place only the second one is checked.
It's possible that when the second is not NULL the first is also not NULL.
If this is so then the problem is not real. But it's hard to prove this. In
any case the code needs to be made more clear.

diff --git a/src/interfaces/ecpg/preproc/type.c
b/src/interfaces/ecpg/preproc/type.c
--- a/src/interfaces/ecpg/preproc/type.c    (revision
a49ac80219c6f28c3cf3973f797de637329952da)
+++ b/src/interfaces/ecpg/preproc/type.c    (date 1740396929346)
@@ -395,7 +395,10 @@
 
                 ECPGdump_a_simple(o, name, type->type, type->size, (arr_str_size &&
strcmp(arr_str_size, "0") != 0) ? arr_str_size : str_neg_one, struct_sizeof,
prefix, type->counter);
                 if (ind_type != NULL)
-                    ECPGdump_a_simple(o, ind_name, ind_type->type, ind_type->size,
(arr_str_size && strcmp(arr_str_size, "0") != 0) ? arr_str_size :
ind_type_neg_one, ind_struct_sizeof, ind_prefix, 0);
+                {
+                    Assert(ind_name != NULL);
+                    ECPGdump_a_simple(o, ind_name, ind_type->type,
ind_type->size, (arr_str_size && strcmp(arr_str_size, "0") != 0) ?
arr_str_size : ind_type_neg_one, ind_struct_sizeof, ind_prefix, 0);
+                }
 
                 free(str_neg_one);
                 free(ind_type_neg_one);


pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #18847: Different Query Results with and without a Primary Key Constraint
Next
From: PG Bug reporting form
Date:
Subject: BUG #18849: DEREF_OF_NULL.RET Pointer '&partexprs_item.ptr_value', returned from function 'list_head' at partiti