diff options
author | Michael Meskes <meskes@postgresql.org> | 2006-06-21 10:29:50 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2006-06-21 10:29:50 +0000 |
commit | 08f197391135951f7e60d65457103307dea89f0c (patch) | |
tree | 7d7f4c50018106b89d9d47cc4816145c33d0c5b1 /src/interfaces/ecpg/ecpglib/extern.h | |
parent | 23623f05f05fcdc3142e83bf21cf4dc10e16aafd (diff) | |
download | postgresql-08f197391135951f7e60d65457103307dea89f0c.tar.gz postgresql-08f197391135951f7e60d65457103307dea89f0c.zip |
Added fixes from the coverity report send in by Joachim Wieland <joe@mcknight.de>
Added missing error handling in a few functions in ecpglib.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/extern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h index cde99c9f3e2..aed06f33535 100644 --- a/src/interfaces/ecpg/ecpglib/extern.h +++ b/src/interfaces/ecpg/ecpglib/extern.h @@ -14,7 +14,7 @@ enum COMPAT_MODE enum ARRAY_TYPE { - ECPG_ARRAY_NOT_SET, ECPG_ARRAY_ARRAY, ECPG_ARRAY_VECTOR, ECPG_ARRAY_NONE + ECPG_ARRAY_ERROR, ECPG_ARRAY_NOT_SET, ECPG_ARRAY_ARRAY, ECPG_ARRAY_VECTOR, ECPG_ARRAY_NONE }; /* Here are some methods used by the lib. */ |