diff options
author | drh <> | 2023-07-10 18:05:23 +0000 |
---|---|---|
committer | drh <> | 2023-07-10 18:05:23 +0000 |
commit | cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6 (patch) | |
tree | 044c5f033955d8815f843a09530fb76e67856818 /src/sqliteInt.h | |
parent | ff96718b529f98e0f13133f1dcd4f0262a2590d5 (diff) | |
parent | 4c40b7b819bed28a63a04eed32882ee46bc826fc (diff) | |
download | sqlite-cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6.tar.gz sqlite-cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6.zip |
Merge the latest trunk enhancements into the wal-shm-exceptions branch.
FossilOrigin-Name: f655d08d019bab0c578886e91ca24fd956d1b3dea9b9c9104812b3cf62e5e556
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8eae8d166..770aa7071 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4608,7 +4608,8 @@ struct FpDecode { char isSpecial; /* 1: Infinity 2: NaN */ int n; /* Significant digits in the decode */ int iDP; /* Location of the decimal point */ - char z[24]; /* Significiant digits */ + char *z; /* Start of significant digits */ + char zBuf[24]; /* Storage for significant digits */ }; void sqlite3FpDecode(FpDecode*,double,int,int); |