diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-09-19 20:05:59 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-09-19 20:05:59 +0000 |
commit | 3c237e7347ff25735b6dbb7f9f6a8cf3d77f8608 (patch) | |
tree | 963bd6d231e9cd6e994ac738cb02e28973db1add /contrib/string/string_io.c | |
parent | 8594ade7b017a4190817a746114040af9d44080a (diff) | |
download | postgresql-3c237e7347ff25735b6dbb7f9f6a8cf3d77f8608.tar.gz postgresql-3c237e7347ff25735b6dbb7f9f6a8cf3d77f8608.zip |
I have two small patches which correct some very obscure bug in the parser
of the array constants and in one of the loadable modules I posted some time
ago.
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
Diffstat (limited to 'contrib/string/string_io.c')
-rw-r--r-- | contrib/string/string_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/string/string_io.c b/contrib/string/string_io.c index ab49c5321a3..b6158c74e43 100644 --- a/contrib/string/string_io.c +++ b/contrib/string/string_io.c @@ -79,7 +79,7 @@ string_output(char *data, int size) len++; break; default: - if (NOTPRINTABLE(c)) { + if (NOTPRINTABLE(*p)) { len += 3; } } |