diff options
author | Michael Meskes <meskes@postgresql.org> | 2013-09-08 12:59:43 +0200 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2013-09-08 13:13:22 +0200 |
commit | 994362a317ced987b6ea616b236c402d715ddcd5 (patch) | |
tree | e7581c3783da36cdffe5de79d8f31972941a61d1 /src | |
parent | aef9d25aa3dc90bf303897ffc445c92420df4a6d (diff) | |
download | postgresql-994362a317ced987b6ea616b236c402d715ddcd5.tar.gz postgresql-994362a317ced987b6ea616b236c402d715ddcd5.zip |
Return error if allocation of new element was not possible.
Found by Coverity.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/pgtypeslib/numeric.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/pgtypeslib/numeric.c b/src/interfaces/ecpg/pgtypeslib/numeric.c index 7257c812542..55c5b45616e 100644 --- a/src/interfaces/ecpg/pgtypeslib/numeric.c +++ b/src/interfaces/ecpg/pgtypeslib/numeric.c @@ -430,14 +430,18 @@ PGTYPESnumeric_to_asc(numeric *num, int dscale) numeric *numcopy = PGTYPESnumeric_new(); char *s; - if (dscale < 0) - dscale = num->dscale; + if (numcopy == NULL) + return NULL; if (PGTYPESnumeric_copy(num, numcopy) < 0) { PGTYPESnumeric_free(numcopy); return NULL; } + + if (dscale < 0) + dscale = num->dscale; + /* get_str_from_var may change its argument */ s = get_str_from_var(numcopy, dscale); PGTYPESnumeric_free(numcopy); @@ -1520,6 +1524,9 @@ numericvar_to_double(numeric *var, double *dp) char *endptr; numeric *varcopy = PGTYPESnumeric_new(); + if (varcopy == NULL) + return -1; + if (PGTYPESnumeric_copy(var, varcopy) < 0) { PGTYPESnumeric_free(varcopy); |