- Notifications
You must be signed in to change notification settings - Fork5
Commita05ed5b
committed
Fixes:
In postgres95/src/backend/nodes/readfuncs, lines 1188 and 1189,local_node->relname is taken to point to a NameType, while itsdefined as a pointer to char. Both the casting to Name and thecall of namestrcpy should, IMHO, be changed appropriately (firstpatch).As far as I could see from the Linux signal header file,a signal handler is declared as typedef void (*__sighandler_t)(int);Few changes to postgres95/src/backend/storage/lmgr/proc.c seemappropriate to comply with this.Finally, postgres95/src/bin/pg_version/pg_version.c definesa function GetDataHome (by default, returning an integer)and returns NULL in the function, which isn't an integer...Submitted by: ernst.molitor@uni-bonn.de1 parent4477b6f commita05ed5b
File tree
3 files changed
+10
-9
lines changed- src
- backend
- nodes
- storage/lmgr
- bin/pg_version
3 files changed
+10
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
1185 | 1185 | | |
1186 | 1186 | | |
1187 | 1187 | | |
1188 | | - | |
1189 | | - | |
| 1188 | + | |
| 1189 | + | |
1190 | 1190 | | |
1191 | 1191 | | |
1192 | 1192 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
| 49 | + | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| |||
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
| 99 | + | |
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
| |||
628 | 628 | | |
629 | 629 | | |
630 | 630 | | |
631 | | - | |
632 | 631 | | |
| 632 | + | |
633 | 633 | | |
634 | 634 | | |
| 635 | + | |
635 | 636 | | |
636 | 637 | | |
637 | 638 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
0 commit comments
Comments
(0)