Differences From Artifact [6e8614c8b8]:
- File src/db.c — part of check-in [0c9dff644e] at 2024-08-23 13:00:08 on branch trunk — Move the fossil_strdup() implementation from import.c over to util.c where it belongs. Add a new fossil_strdup_nn() that mimics the behavior of mprintf("%s",...), only faster. (user: drh size: 179401)
To Artifact [0904ec73c5]:
- File src/db.c — part of check-in [c0b9b4487f] at 2024-08-23 20:51:04 on branch trunk — Replace calls to strcpy() with a tree-local strcpy() clone to squelch unwarranted link-time warnings when building on OpenBSD. There is still one strcpy() instance in the upstream extsrc/shell.c. (user: stephan size: 179408) [more...]
| ︙ | |||
1433 1434 1435 1436 1437 1438 1439 | 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 | - + |
return;
}
if( sqlite3_user_data(context)==0 ){
zTemp = obscure((char*)zIn);
}else{
zTemp = unobscure((char*)zIn);
}
|
| ︙ |