8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Misc and mark suspicious place(s).

This commit is contained in:
robocop 2004-11-08 02:57:23 +00:00
parent c68c62f717
commit 8dd94e9d5b
3 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@
//
//____________________________________________________________
//
// $Id: exe.cpp,v 1.39 2004-10-04 08:14:34 robocop Exp $
// $Id: exe.cpp,v 1.40 2004-11-08 02:57:15 robocop Exp $
//
// 2001.07.06 Sean Leyne - Code Cleanup, removed "#ifdef READONLY_DATABASE"
// conditionals, as the engine now fully supports
@ -98,7 +98,7 @@ int EXE_action(const TEXT* database, const ULONG switches)
// generate the database parameter block for the attach,
// based on the various switches
const USHORT dpb_length = build_dpb(dpb, switches);
const USHORT dpb_length = build_dpb(dpb, switches); // B.O.
FB_API_HANDLE handle = 0;
isc_attach_database(tdgbl->status, 0, database, &handle, dpb_length,
@ -165,7 +165,7 @@ int EXE_two_phase(const TEXT* database, const ULONG switches)
// generate the database parameter block for the attach,
// based on the various switches
const USHORT dpb_length = build_dpb(dpb, switches);
const USHORT dpb_length = build_dpb(dpb, switches); // B.O.
FB_API_HANDLE handle = 0;
isc_attach_database(tdgbl->status, 0, database, &handle,

View File

@ -108,7 +108,7 @@ namespace Firebird {
return (value <= 0);
}
};
}; // class Entry
Entry* stk;
@ -532,7 +532,7 @@ namespace Firebird {
{
return AutoStorage::getPool();
}
};
}; // class Stack
} // namespace Firebird

View File

@ -24,7 +24,7 @@
* Contributor(s): ______________________________________.
*
*
* $Id: tree.h,v 1.43 2004-11-06 07:20:44 robocop Exp $
* $Id: tree.h,v 1.44 2004-11-08 02:57:23 robocop Exp $
*
*/
@ -476,7 +476,7 @@ public:
BePlusTree* tree;
ItemList *curr;
size_t curPos;
};
}; // class Accessor
private:
Allocator *pool;