Skip to content

Commit 5fa6515

Browse files
committed
Fix incorrect value clone in plato_propagate
1 parent 7c0ddca commit 5fa6515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ Datum vops_populate(PG_FUNCTION_ARGS)
15191519
if (DatumGetPointer(values[i]) != NULL) {
15201520
pfree(DatumGetPointer(values[i]));
15211521
}
1522-
values[i] = datumCopy(val, true, types[i].len);
1522+
values[i] = datumCopy(val, false, types[i].len);
15231523
}
15241524
}
15251525
else if (is_null != nulls[i]

0 commit comments

Comments
 (0)