diff options
author | drh <drh@noemail.net> | 2020-07-30 17:14:55 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-07-30 17:14:55 +0000 |
commit | 48bf2d72b90c218f47352c8c6f68316fff86808e (patch) | |
tree | aaffdd2b742c3743663b87541aebded9920ea818 /src/util.c | |
parent | 8deae5ade337b578599b5e3c22d9480f24e7e53e (diff) | |
download | sqlite-48bf2d72b90c218f47352c8c6f68316fff86808e.tar.gz sqlite-48bf2d72b90c218f47352c8c6f68316fff86808e.zip |
Fix unreachable branches.
FossilOrigin-Name: 905752da9815ff8242b3cb9a77b1ffdc5cfc76143f47c774890f617a542457a5
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 8fbbcfd16..2371aad17 100644 --- a/src/util.c +++ b/src/util.c @@ -859,7 +859,7 @@ int sqlite3GetInt32(const char *zNum, int *pValue){ */ int sqlite3Atoi(const char *z){ int x = 0; - if( z ) sqlite3GetInt32(z, &x); + sqlite3GetInt32(z, &x); return x; } |