Changeset 71
- Timestamp:
- 07/10/08 00:23:43 (2 months ago)
- Files:
-
- trunk/sqlite3.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/sqlite3.c
r70 r71 293 293 if (!VCWD_REALPATH(lib_path, fullpath)) { 294 294 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to load extension at '%s'", lib_path); 295 RETURN_FALSE; 296 } 295 efree(lib_path); 296 RETURN_FALSE; 297 } 298 299 efree(lib_path); 297 300 298 301 if (strncmp(fullpath, extension_dir, extension_dir_len) != 0) { … … 509 512 { 510 513 php_sqlite3_db *db; 511 php_sqlite3_result *result;512 514 zval *object = getThis(); 513 515 char *sql, *errtext = NULL;
