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

29760 Commits

Author SHA1 Message Date
robocop
58f1e2ebf0 increment build number 2008-04-29 12:36:59 +00:00
hvlad
60b971897b increment build number 2008-04-29 12:24:15 +00:00
hvlad
2d7379aa3b Fixed broken restore via service API 2008-04-29 12:24:07 +00:00
robocop
fcc41d428c increment build number 2008-04-29 12:21:31 +00:00
robocop
4cbdb23710 Fix IntlManager.cpp to sync with "config" cleanup.
Notice that whereas JString had a const char* operator for automatic or forced conversion, Firebird::string doesn't have one. Worse, the layout of FBString has a static buffer of size 32 but can allocate a dynamic buffer for larger requirements and therefore, casting FBString to char* or const char* will most likely produce wrong behavior or crash. Thereforer, I removed the places with such explicit cast. Alex, please watch if there are more problems of this type in IntlManager.cpp, the "config" dir or the "vulcan" dir.
2008-04-29 12:21:17 +00:00
robocop
16dbb17061 increment build number 2008-04-29 12:01:36 +00:00
robocop
39e02e49fb 1.- Style.
2.- Cleanup.
3.- Put enumerations and plain structures in their due classes, checked constness, commented or deleted unused crap (watch stupid macros in header files that pollute all the files where such headers are included), etc.

There's a lot of pending work to do. Still trying to convert to decent C++ this barbarian code probably written by Genghis Khan or Attila the Hun.
2008-04-29 12:01:24 +00:00
robocop
e9737dd290 increment build number 2008-04-29 11:33:20 +00:00
robocop
9953529694 1.- Style.
2.- Cleanup.
3.- Put a compilation warning on DirectoryList::matchFileName because the function's purpose only can be guessed: it returns true unconditionally. Maybe it was expected to tell us if a file name matched a directory name or querying the operating system to know whether the file existed inside the given directory name. Anyway, since it does nothing useful, DirectoryList::validateFilename is suspicious, too, since it uses the former in a loop.
2008-04-29 11:33:11 +00:00
robocop
b47556d394 increment build number 2008-04-29 11:23:22 +00:00
robocop
0a9c97a255 1.- Style.
2.- Cleanup.
3.- Mark a disastrous condition in Stream::allocSegment in DEBUG mode at least so it can be detected: potentially negative argument to
new char[<number>] if the caller of the function doesn't do what's expected by this function.
4.- Now that the weed JString was eradicated, rename Stream::getJString to getFBString and put an assertion to verify the initial assumption (in the worst case, it could be a buffer overrun).
5.- Fix a deallocation bug (probable heap corruption) in Stream::truncate because delete[] should be used instead of plain delete.

Generally speaking, the code inherited from Vulcan is so weak that expects the caller to know the internal logic of the callee to do the right thing to avoid crashing the callee. This is a general problem with the files in the "config" dir.
2008-04-29 11:23:06 +00:00
robocop
93f58d1671 increment build number 2008-04-29 11:10:54 +00:00
robocop
f075a729a5 1.- Style.
2.- Cleanup.
3.- Fix an invalid memory access when returning data member belonging to an object from the stack in
ConfObject::getConcatenatedValues. I didn't see a runtime error because I don't use the feature, but reading the code is enough.
2008-04-29 11:10:35 +00:00
robocop
db995b0d02 increment build number 2008-04-29 11:05:31 +00:00
robocop
5ee6bf66b6 1.- Style.
2.- Cleanup.
3.- Fix what I assume may cause astray behavior. Only an inept could create an enumeration in Lex.h like this
enum TokenType {
	END_OF_STREAM,
	PUNCT,
	NAME,
to be used in the data member tokenType but at the same time, create preprocessor macros like this
#define WHITE	1
#define PUNCT	2
to be stored and retrieved by
char charTableArray [256]
to calculate the character class (punctuation, spaces, etc) in the Lexer,
where the macro PUNCT (value 2) overrides the enum member PUNCT (value 1) and that inconsistent value is used in both tasks, causing PUNCT to be interpreted as tokenType being NAME (value 2 in the enum). Since this module has several bugs, maybe all the bugs cancel among themselves and all works as expected, but it would be pure luck.
2008-04-29 11:05:11 +00:00
alexpeshkoff
6ab931ebed increment build number 2008-04-29 09:57:58 +00:00
alexpeshkoff
1bd985f223 increment build number 2008-04-29 09:57:57 +00:00
alexpeshkoff
db8f4f1cce increment build number 2008-04-29 09:57:53 +00:00
alexpeshkoff
19a1fe2116 increment build number 2008-04-29 09:55:45 +00:00
alexpeshkoff
0ba2ab7ea7 Make fb_cancel_operation() public API call. Related cleanup. 2008-04-29 09:55:41 +00:00
alexpeshkoff
55a5904cac increment build number 2008-04-29 09:55:40 +00:00
alexpeshkoff
dd6086edc0 increment build number 2008-04-29 09:55:39 +00:00
alexpeshkoff
2954db5a99 increment build number 2008-04-29 09:55:30 +00:00
paulbeach
f31bf55e38 increment build number 2008-04-29 09:40:23 +00:00
alexpeshkoff
3bb16bbef9 increment build number 2008-04-29 08:15:44 +00:00
alexpeshkoff
1b20fba1e9 Fixed "-s" switch in posix CS 2008-04-29 08:15:36 +00:00
alexpeshkoff
e6569dd06b increment build number 2008-04-29 07:57:59 +00:00
alexpeshkoff
bf691d08c1 Cleanup - posix CS works with MT listener as expected. 2008-04-29 07:57:53 +00:00
fsg
64952fa2cd increment build number 2008-04-28 19:21:19 +00:00
hvlad
292b447238 increment build number 2008-04-28 09:35:15 +00:00
hvlad
b04aa77f13 Fixed bug CORE-1830 2008-04-28 09:35:10 +00:00
alexpeshkoff
efbdd3106d increment build number 2008-04-28 07:41:50 +00:00
fsg
e631a409a7 increment build number 2008-04-27 19:23:56 +00:00
fsg
2587337be6 increment build number 2008-04-27 19:23:15 +00:00
asfernandes
cd35f836d3 increment build number 2008-04-27 18:53:39 +00:00
asfernandes
b2abfa3d8b Compatibility with Valgrind 3.3 2008-04-27 18:53:33 +00:00
robocop
de2d6eb02e increment build number 2008-04-27 04:44:39 +00:00
asfernandes
efb083c560 increment build number 2008-04-27 02:39:52 +00:00
asfernandes
53a2090f65 Misc 2008-04-27 02:39:51 +00:00
asfernandes
13915998c3 increment build number 2008-04-27 02:39:47 +00:00
asfernandes
aa4ce69a7f increment build number 2008-04-26 23:20:43 +00:00
fsg
4cd70c1b8c increment build number 2008-04-26 19:38:39 +00:00
asfernandes
3762641975 increment build number 2008-04-26 15:58:22 +00:00
asfernandes
1eef61d8e4 Fixed CORE-1859 - Arithmetic overflow or division by zero has occurred. in MAX function 2008-04-26 15:58:16 +00:00
asfernandes
aeab665515 increment build number 2008-04-26 15:49:33 +00:00
robocop
1a56fb0fde increment build number 2008-04-26 14:50:30 +00:00
robocop
649c1733e9 Misc. 2008-04-26 14:50:27 +00:00
robocop
e1c02611c9 increment build number 2008-04-26 14:46:03 +00:00
robocop
e593a978b8 Fix the code in these almost forgotten files.
Close some B.O., fix the parameters (constness, type) and mark unused functions with our macro for that purpose.
2008-04-26 14:45:58 +00:00
robocop
ec03603707 increment build number 2008-04-26 14:35:24 +00:00
robocop
2a88090ed9 increment build number 2008-04-26 14:35:23 +00:00
robocop
53bf05282d Misc. 2008-04-26 14:35:12 +00:00
robocop
b23d31fbd8 increment build number 2008-04-26 14:34:21 +00:00
robocop
b95f9a963a increment build number 2008-04-26 14:33:21 +00:00
robocop
299803d438 increment build number 2008-04-26 10:36:47 +00:00
robocop
fd11574f6f increment build number 2008-04-26 10:36:46 +00:00
robocop
cc29cad2eb increment build number 2008-04-26 10:33:57 +00:00
robocop
a93fed02cf increment build number 2008-04-26 10:31:12 +00:00
robocop
ee9b4036ad increment build number 2008-04-26 10:31:10 +00:00
robocop
7d4533725b Misc. 2008-04-26 10:31:03 +00:00
robocop
4c379b8a1a increment build number 2008-04-26 10:29:55 +00:00
robocop
83d3ddd6cb Replace custom code by helper class ThreadStatusGuard. 2008-04-26 10:29:52 +00:00
robocop
a426a46295 increment build number 2008-04-26 10:29:49 +00:00
fsg
87b4118954 increment build number 2008-04-25 19:19:35 +00:00
alexpeshkoff
4b60d8d5d7 increment build number 2008-04-25 16:37:34 +00:00
alexpeshkoff
751f90e7bb increment build number 2008-04-25 16:37:33 +00:00
alexpeshkoff
a7ec61e555 increment build number 2008-04-25 16:36:26 +00:00
alexpeshkoff
7f3c43032a Deprecated fbmgr utility.
To be removed in 3.0.
2008-04-25 16:36:23 +00:00
alexpeshkoff
b1854af270 increment build number 2008-04-25 16:33:35 +00:00
alexpeshkoff
81e856251c Added switch "-daemon" to guardian.
Thios seems a good replacement of used since 2.0 fbmgr functionality.
2008-04-25 16:33:30 +00:00
alexpeshkoff
3da277879c increment build number 2008-04-25 13:40:46 +00:00
asfernandes
49a72a21ec increment build number 2008-04-25 11:01:11 +00:00
paulbeach
8fc7cdf1f2 increment build number 2008-04-25 10:14:56 +00:00
paulbeach
2600e01b89 Fix optimisation problem on MacOSX ppc build that results in a segfault on exit for all utilities
Re-define __ppc__ where necessary
2008-04-25 10:14:54 +00:00
paulbeach
c06edd91c0 increment build number 2008-04-25 10:14:50 +00:00
alexpeshkoff
79216d01f8 increment build number 2008-04-25 10:05:01 +00:00
paulbeach
a099700ac1 increment build number 2008-04-25 10:04:28 +00:00
paulbeach
200915e330 increment build number 2008-04-25 10:04:21 +00:00
paulbeach
b8ae68d534 increment build number 2008-04-25 09:42:22 +00:00
paulbeach
bc448cd3d1 increment build number 2008-04-25 09:42:21 +00:00
paulbeach
64df8dd761 Solaris 64bit AMD port 2008-04-25 09:42:19 +00:00
paulbeach
4591bde771 increment build number 2008-04-25 09:42:15 +00:00
paulbeach
d77ad7c7c2 increment build number 2008-04-25 09:42:10 +00:00
alexpeshkoff
251c9e6b10 increment build number 2008-04-25 09:30:31 +00:00
alexpeshkoff
dceac94a4a Fixed CORE-1868: AV in isc_dsql_free_statement() 2008-04-25 09:30:27 +00:00
hvlad
544ac78286 increment build number 2008-04-25 08:40:03 +00:00
hvlad
a622fe2bfe Fix MSVC build after JString removal 2008-04-25 08:40:00 +00:00
hvlad
ac8ca54483 increment build number 2008-04-25 08:39:20 +00:00
fsg
b00a137d1f increment build number 2008-04-24 18:56:20 +00:00
alexpeshkoff
fdd83da48b increment build number 2008-04-24 16:08:42 +00:00
alexpeshkoff
5c1dcfc16b increment build number 2008-04-24 16:08:40 +00:00
alexpeshkoff
d13a6cbdad increment build number 2008-04-24 16:06:25 +00:00
alexpeshkoff
e6ddce9bfe increment build number 2008-04-24 16:05:47 +00:00
alexpeshkoff
d4ffa306bf Fixed CORE-1864: SELECT operator does not work in ISQL 2008-04-24 16:05:39 +00:00
alexpeshkoff
ccee8e7ff8 increment build number 2008-04-24 16:05:37 +00:00
alexpeshkoff
6060c0c6c1 increment build number 2008-04-24 15:53:09 +00:00
alexpeshkoff
ba8e97d185 increment build number 2008-04-24 15:53:08 +00:00
alexpeshkoff
c0a472d65e 1. Replaced JString (and some plain char[] buffers) with Firebird::string.
2. Make memory allocations look (and wrok) in current firebird style.
3. Fixed vararg usage problem on amd64/linux in AdminException.
2008-04-24 15:49:43 +00:00
alexpeshkoff
b0309298b2 increment build number 2008-04-24 15:49:37 +00:00
alexpeshkoff
ef403fb1f5 increment build number 2008-04-24 15:44:59 +00:00
alexpeshkoff
051eae391f Added useful JString methods to Firebird::string 2008-04-24 15:44:54 +00:00
alexpeshkoff
5c4efdc6e3 increment build number 2008-04-24 15:11:49 +00:00
alexpeshkoff
6e04201fa5 Fixed AV: exception may be thrown when there is no attachment at all 2008-04-24 15:11:45 +00:00
robocop
455d2e0864 increment build number 2008-04-24 10:57:01 +00:00
robocop
b70fc21329 Collapse some lines of repetitive code. 2008-04-24 10:56:57 +00:00
robocop
38afbc41a9 increment build number 2008-04-24 10:50:35 +00:00
robocop
d3e036d7b9 Fix CORE-1862. 2008-04-24 10:50:22 +00:00
robocop
87654e0cc8 increment build number 2008-04-24 07:19:10 +00:00
robocop
f6140e2a20 Cleanup. 2008-04-24 07:18:56 +00:00
robocop
a56bc1f2f8 increment build number 2008-04-24 07:18:21 +00:00
robocop
2f7dea748c increment build number 2008-04-24 07:18:20 +00:00
robocop
6ea17fa81d Misc. 2008-04-24 07:18:15 +00:00
robocop
36c983c60e increment build number 2008-04-24 07:16:19 +00:00
robocop
2ce6a25c83 Style. 2008-04-24 07:16:12 +00:00
asfernandes
d45f8c97dc increment build number 2008-04-24 01:53:43 +00:00
asfernandes
e18ac3cb53 Misc 2008-04-24 01:53:40 +00:00
asfernandes
2038f50229 increment build number 2008-04-24 01:53:36 +00:00
asfernandes
176aa34523 increment build number 2008-04-24 01:53:35 +00:00
asfernandes
2533b11454 increment build number 2008-04-24 01:53:32 +00:00
fsg
d7aa414c78 increment build number 2008-04-23 19:10:04 +00:00
hvlad
fb70f5616b increment build number 2008-04-23 09:38:18 +00:00
hvlad
3c353209d2 Implement CORE-818 : Server needs to detect disconnects.
For INET only.
2008-04-23 09:38:15 +00:00
hvlad
88bef5eab6 increment build number 2008-04-23 09:38:14 +00:00
hvlad
9d89c63d16 increment build number 2008-04-23 09:38:13 +00:00
hvlad
e2fdb670ab increment build number 2008-04-23 09:38:08 +00:00
hvlad
3199fddd72 increment build number 2008-04-23 09:31:45 +00:00
hvlad
969a81f138 Lets cleanup status vector correctly. 2008-04-23 09:31:40 +00:00
alexpeshkoff
e7f1e914e2 increment build number 2008-04-23 08:40:42 +00:00
alexpeshkoff
036f078fed increment build number 2008-04-23 08:40:30 +00:00
dimitr
ee323dcaf0 increment build number 2008-04-23 08:06:32 +00:00
dimitr
5765e4efea increment build number 2008-04-23 08:06:31 +00:00
dimitr
68f3670087 Made indices on procedure and exception IDs unique.
Added new unique index on generator ID.
2008-04-23 08:06:28 +00:00
dimitr
d7973aa164 increment build number 2008-04-23 08:01:39 +00:00
dimitr
06f13e393c Misc. 2008-04-23 08:01:36 +00:00
dimitr
6e8686fa4d increment build number 2008-04-23 08:00:40 +00:00
dimitr
a355c60d02 1) Implemented CORE-793. More work is required to terminate idle CS processes, this will be done the next week.
2) Fixed the "lock conflict" error for the CS monitoring in v2.5.
2008-04-23 08:00:27 +00:00
asfernandes
f4e86a9d37 increment build number 2008-04-23 02:19:27 +00:00
asfernandes
cfb2b8ee91 Misc 2008-04-23 02:19:25 +00:00
asfernandes
ba958fcb87 increment build number 2008-04-23 02:19:21 +00:00
fsg
80607dc14c increment build number 2008-04-22 19:11:36 +00:00
asfernandes
5fa230376e increment build number 2008-04-22 15:32:39 +00:00
asfernandes
a599f8a49a Fixed problems of attachment lock in Windows - thanks to Vlad 2008-04-22 15:32:33 +00:00
robocop
a874c2efb2 increment build number 2008-04-22 13:01:23 +00:00
robocop
888c5d539f Cleanup. 2008-04-22 13:01:18 +00:00
robocop
9b6ca77304 increment build number 2008-04-22 11:34:34 +00:00
robocop
3934d8fb1f increment build number 2008-04-22 11:34:32 +00:00
robocop
c23e66cc10 Paranoid check. 2008-04-22 11:34:24 +00:00
robocop
ff82f5e858 increment build number 2008-04-22 11:32:50 +00:00
robocop
90394ca9c5 Misc. 2008-04-22 11:32:44 +00:00
robocop
9a228e381a increment build number 2008-04-22 11:28:24 +00:00
robocop
cd2e3a1862 Avoid const_cast. 2008-04-22 11:28:16 +00:00
robocop
a3e8480380 increment build number 2008-04-22 11:27:51 +00:00
robocop
ccaf157b4d Since all usages cast ext_filename to char*, I switched to it. 2008-04-22 11:27:42 +00:00
alexpeshkoff
e9e8fb39a8 increment build number 2008-04-22 09:26:59 +00:00
alexpeshkoff
52496594ff increment build number 2008-04-22 09:26:54 +00:00
fsg
38a854fa5b increment build number 2008-04-21 19:01:31 +00:00
fsg
f6ade02722 increment build number 2008-04-21 19:00:36 +00:00
alexpeshkoff
511e68fa9c increment build number 2008-04-21 16:29:08 +00:00
alexpeshkoff
b96cae73fb Use internal trusted authentication in services 2008-04-21 16:29:04 +00:00
alexpeshkoff
fad54a91ad increment build number 2008-04-21 16:18:47 +00:00
alexpeshkoff
9ff2935d79 Fixed CORE-1854: Value of CURRENT_USER may be not in upper case when using unix OS auth 2008-04-21 16:18:41 +00:00
robocop
c349e63e50 increment build number 2008-04-21 14:02:56 +00:00
robocop
f32d1ac819 Style. 2008-04-21 14:02:47 +00:00
robocop
aa268dfcc7 increment build number 2008-04-21 13:45:43 +00:00
robocop
4f18a793f0 Maybe it's just my imagination, but I see more B.O. 2008-04-21 13:45:37 +00:00
robocop
b41cd7d048 increment build number 2008-04-21 12:56:20 +00:00
robocop
f8a2702b69 Buffer overrun and null pointer exception courtesy of Jim.
:-(
2008-04-21 12:56:16 +00:00
robocop
161bb87587 increment build number 2008-04-21 12:14:31 +00:00
robocop
272ab7fb99 Misc. 2008-04-21 12:14:16 +00:00
robocop
a631525624 increment build number 2008-04-21 11:39:43 +00:00
robocop
e4986792c3 increment build number 2008-04-21 11:39:41 +00:00
robocop
f8dee95b8c Misc. 2008-04-21 11:39:35 +00:00
robocop
6c7f2e93a5 increment build number 2008-04-21 11:39:28 +00:00
robocop
3d23c12f0c increment build number 2008-04-21 11:37:35 +00:00
robocop
8ccc9eb5a6 Changed sw_use to sw_no_reserve and ua_use to ua_no_reserve to distinguish them from sw_user and ua_user. Also, the new name is clearer on the intended usage.
Disabled the replay log feature since Adriano deleted it in the server.
Also god rid of expand_filename() that was a B.O. function.
2008-04-21 11:37:23 +00:00
robocop
a658ce64a5 increment build number 2008-04-21 11:36:28 +00:00
robocop
14a0296b68 Changed sw_use to sw_no_reserve and ua_use to ua_no_reserve to distinguish them from sw_user and ua_user. Also, the new name is clearer on the intended usage.
Disabled the replay log feature since Adriano deleted it in the server.
2008-04-21 11:36:10 +00:00
alexpeshkoff
a34b706ffd increment build number 2008-04-21 09:53:32 +00:00
alexpeshkoff
8a1b11482f Fixed races during disconnect 2008-04-21 09:53:28 +00:00
dimitr
f2e1304e17 increment build number 2008-04-21 09:13:52 +00:00
dimitr
6e67797037 increment build number 2008-04-21 09:07:27 +00:00
dimitr
45cb0a2353 increment build number 2008-04-21 09:03:14 +00:00
asfernandes
833aba1d0c increment build number 2008-04-21 02:42:18 +00:00
asfernandes
083a3ccc36 increment build number 2008-04-21 02:28:45 +00:00
asfernandes
87bbcad64c increment build number 2008-04-20 23:03:40 +00:00
asfernandes
29490460b2 Misc 2008-04-20 23:03:35 +00:00
asfernandes
5d7597dc69 increment build number 2008-04-20 23:00:55 +00:00
asfernandes
122594c388 increment build number 2008-04-20 22:54:40 +00:00
asfernandes
c416ea1621 Lock the attachment handle during API calls 2008-04-20 22:54:36 +00:00
asfernandes
53dddcdf2b increment build number 2008-04-20 22:54:33 +00:00
asfernandes
375e15d18b increment build number 2008-04-20 22:54:29 +00:00
asfernandes
9a79df82cb increment build number 2008-04-20 22:54:23 +00:00
asfernandes
adbaa5bb3b increment build number 2008-04-20 19:47:37 +00:00
asfernandes
6f9383df16 increment build number 2008-04-20 19:16:36 +00:00
fsg
3a6365d88c increment build number 2008-04-20 18:59:20 +00:00
dimitr
24ec0122b0 increment build number 2008-04-20 14:35:26 +00:00
dimitr
46adac380c Misc. 2008-04-20 14:35:23 +00:00
dimitr
456e36da79 increment build number 2008-04-20 14:02:58 +00:00
dimitr
c74650aa5f Fixed CORE-1357. 2008-04-20 14:02:51 +00:00
dimitr
fe3c271644 increment build number 2008-04-20 13:57:07 +00:00
dimitr
d668d6c33b increment build number 2008-04-20 13:55:30 +00:00
robocop
b9b5658b2c increment build number 2008-04-20 11:46:08 +00:00
robocop
7333e03c17 More encapsulation, bring some order, fix some B.O. cases, etc. 2008-04-20 11:46:02 +00:00
robocop
0ba8a36d7d increment build number 2008-04-20 10:41:07 +00:00
robocop
4ba56c4468 increment build number 2008-04-20 10:41:05 +00:00
robocop
60802a9d77 Fix the most obvioius problems:
- style (few fixes only)
- constness
- total lack of encapsulation (all data members exposed in the interface).
2008-04-20 10:40:58 +00:00
robocop
67e68fd8ed increment build number 2008-04-20 10:40:51 +00:00
robocop
9261009846 increment build number 2008-04-20 10:40:41 +00:00
fsg
b66ffeda25 increment build number 2008-04-19 19:05:18 +00:00
alexpeshkoff
64d58c5a7c increment build number 2008-04-19 13:02:24 +00:00
alexpeshkoff
ede4082090 Fixed one more problem detected with valgrind.
Also do not write empty blobs to temp file.
2008-04-19 13:02:13 +00:00
alexpeshkoff
10de99b04c increment build number 2008-04-19 11:46:16 +00:00
alexpeshkoff
5dc978ae5d Added missing initializer 2008-04-19 11:46:09 +00:00
robocop
6757683cad increment build number 2008-04-19 11:33:51 +00:00
robocop
3a5712db9e Style. 2008-04-19 11:33:37 +00:00
robocop
9cc4fdfa1a increment build number 2008-04-19 11:11:21 +00:00
robocop
b95a7d3b28 increment build number 2008-04-19 11:11:19 +00:00
robocop
05271261e1 Style. 2008-04-19 11:11:10 +00:00
robocop
22dbbc1a08 increment build number 2008-04-19 11:10:42 +00:00
robocop
0c60a4cec6 increment build number 2008-04-19 11:10:14 +00:00
robocop
e8cc245a5d increment build number 2008-04-19 09:42:09 +00:00
robocop
496300beab increment build number 2008-04-19 09:42:08 +00:00
robocop
61662f5b5b Constness and style. 2008-04-19 09:42:01 +00:00
robocop
e9e0e1025f increment build number 2008-04-19 09:41:57 +00:00
robocop
47191cb329 increment build number 2008-04-19 09:40:30 +00:00
robocop
5d12ca3dca Constness. 2008-04-19 09:40:19 +00:00
fsg
49d4ce12d8 increment build number 2008-04-18 19:16:26 +00:00
dimitr
3993d1c826 increment build number 2008-04-18 18:34:48 +00:00
dimitr
ae4ad27667 Cleanup. 2008-04-18 18:34:43 +00:00
alexpeshkoff
cf5729f9be increment build number 2008-04-18 16:15:20 +00:00
alexpeshkoff
3334cf7fe1 Fixed a problem detected by valgrind - uninitialized data in temp file 2008-04-18 16:15:04 +00:00
robocop
b49efee01c increment build number 2008-04-18 14:30:55 +00:00
robocop
37ca104c1a Misc. 2008-04-18 14:30:45 +00:00
alexpeshkoff
08c98b0a1b increment build number 2008-04-18 10:52:41 +00:00
alexpeshkoff
742c1dce93 Linger should better be initialized 2008-04-18 10:52:29 +00:00
dimitr
987f2ed5b8 increment build number 2008-04-18 10:33:41 +00:00
dimitr
b198d3b09f DSQL now belongs to the engine, so its pools will be released automagically upon disconnect.
There's no need in such crappy anti-memory-leak hacks anymore.
2008-04-18 10:33:35 +00:00
robocop
b266f49d88 increment build number 2008-04-18 10:03:09 +00:00
robocop
5b0a5ded86 Style. 2008-04-18 10:03:04 +00:00
robocop
f7b3f4ec13 increment build number 2008-04-18 09:57:05 +00:00
robocop
6243bee9a1 increment build number 2008-04-18 09:50:29 +00:00
robocop
2f7d411479 Misc. 2008-04-18 09:50:26 +00:00
robocop
ba9e8481d0 increment build number 2008-04-18 09:48:57 +00:00
robocop
97543c6cb9 Generated iberor.h has slightly different layout. 2008-04-18 09:48:52 +00:00
alexpeshkoff
1f23119802 increment build number 2008-04-18 09:44:39 +00:00
alexpeshkoff
f0cb8afa8b cleanup 2008-04-18 09:44:36 +00:00
robocop
ed91de9083 increment build number 2008-04-18 06:00:53 +00:00
robocop
5896e1caec Tring to fix chaotic indentation (spaces v/s tabs). 2008-04-18 06:00:48 +00:00
asfernandes
92a15bdafc increment build number 2008-04-18 01:37:48 +00:00
asfernandes
d75951e8e5 Misc 2008-04-18 01:37:44 +00:00