Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
de94b47c
Commit
de94b47c
authored
Mar 03, 2014
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace
parent
f8ce16d0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/bin/pg_ctl/pg_ctl.c
src/bin/pg_ctl/pg_ctl.c
+1
-1
src/interfaces/ecpg/preproc/variable.c
src/interfaces/ecpg/preproc/variable.c
+1
-1
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+1
-1
src/test/regress/pg_regress.c
src/test/regress/pg_regress.c
+1
-1
No files found.
src/bin/pg_ctl/pg_ctl.c
View file @
de94b47c
...
...
@@ -383,7 +383,7 @@ free_readfile(char **optlines)
while
(
optlines
[
i
++
])
free
(
optlines
[
i
]);
free
(
optlines
);
return
;
...
...
src/interfaces/ecpg/preproc/variable.c
View file @
de94b47c
...
...
@@ -456,7 +456,7 @@ dump_variables(struct arguments * list, int mode)
/* Then release the list element. */
if
(
mode
!=
0
)
free
(
list
);
free
(
str_zero
);
}
...
...
src/interfaces/libpq/fe-exec.c
View file @
de94b47c
...
...
@@ -2760,7 +2760,7 @@ PQfnumber(const PGresult *res, const char *field_name)
for
(
i
=
0
;
i
<
res
->
numAttributes
;
i
++
)
if
(
strcmp
(
field_name
,
res
->
attDescs
[
i
].
name
)
==
0
)
return
i
;
/* Fall through to the normal check if that didn't work out. */
/*
...
...
src/test/regress/pg_regress.c
View file @
de94b47c
...
...
@@ -1159,7 +1159,7 @@ get_alternative_expectfile(const char *expectfile, int i)
if
(
!
(
tmp
=
(
char
*
)
malloc
(
ssize
)))
return
NULL
;
if
(
!
(
s
=
(
char
*
)
malloc
(
ssize
)))
{
free
(
tmp
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment