mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-22 20:22:44 +03:00
Fix an 8-byte alignment problem on the "crash test" harness (test code,
not in the core) that causes problems on Sparc. FossilOrigin-Name: bcbc65030fa7c61f94100142e94ba2a5774f85b0
This commit is contained in:
@@ -133,9 +133,9 @@ struct CrashFile {
|
||||
** OsFileSize() calls. Although both could be done by traversing the
|
||||
** write-list, in practice this is impractically slow.
|
||||
*/
|
||||
int iSize; /* Size of file in bytes */
|
||||
int nData; /* Size of buffer allocated at zData */
|
||||
u8 *zData; /* Buffer containing file contents */
|
||||
int nData; /* Size of buffer allocated at zData */
|
||||
i64 iSize; /* Size of file in bytes */
|
||||
};
|
||||
|
||||
struct CrashGlobal {
|
||||
|
||||
Reference in New Issue
Block a user