1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-21 09:00:59 +03:00

Use memcpy() rather than "=" to copy a structure, in order to work around

a bug in the XLC compiler on AIX.  Ticket #3344. (CVS 6003)

FossilOrigin-Name: 18bbcafc16bb985a7c74e07ffb9c4f28273a7cfd
This commit is contained in:
drh
2008-12-10 11:49:06 +00:00
parent 032ca70167
commit 092d5efc70
3 changed files with 9 additions and 9 deletions

View File

@@ -15,7 +15,7 @@
** only within the VDBE. Interface routines refer to a Mem using the
** name sqlite_value
**
** $Id: vdbemem.c,v 1.130 2008/12/09 02:51:24 drh Exp $
** $Id: vdbemem.c,v 1.131 2008/12/10 11:49:06 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -255,7 +255,7 @@ int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){
pFunc->xFinalize(&ctx);
assert( 0==(pMem->flags&MEM_Dyn) && !pMem->xDel );
sqlite3DbFree(pMem->db, pMem->zMalloc);
*pMem = ctx.s;
memcpy(pMem, &ctx.s, sizeof(ctx.s));
rc = (ctx.isError?SQLITE_ERROR:SQLITE_OK);
}
return rc;