From 25a8fc9e271eaddbf1ce370666c7e450be430679 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 13 Feb 2010 11:59:35 +0100 Subject: removed some references to old sourceforge/track ticket numbers in the code --- src/result.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/result.cpp b/src/result.cpp index 80406af..0994f47 100644 --- a/src/result.cpp +++ b/src/result.cpp @@ -93,7 +93,7 @@ TRY_AGAIN_STEP: _crow++; break; - /* hotfix for ticket #13 */ + /* don't fail if the sqlite file is locked by another writer, try again later */ case SQLITE_BUSY: sqlitexx_port_sleep( 1 ); goto TRY_AGAIN_STEP; @@ -122,9 +122,10 @@ void result::BufferData( ) { break; case SQLITE3_TEXT: - /* KLUDGE: the documentation is not specific about returning NULL here (but - * it happens, see ticket #16). I get the feeling this is undefined behaviour, - * so people should not relly on it from outside. */ + /* KLUDGE: the documentation is not specific about returning NULL here + * I get the feeling this is undefined behaviour, so people should not + * relly on it from outside. + */ tmp = (const char *)sqlite3_column_text( _stmt, i ); if( tmp != NULL ) { value.value.s = (unsigned char *)strdup( tmp ); -- cgit v1.2.3-54-g00ecf