63 Commits

Author SHA1 Message Date
Markus Makela
76f06572ed Fix to multi-statement processing
Renamed is_mysql_comment_start to is_mysql_statement_end because it checks
whether a statement truly ends instead of just checking comment block starts.

The calculations for buffer length in readwritesplit now use the payload size
instead of the buffer size.
2016-03-03 10:44:11 +02:00
Markus Makela
8b6595aa68 Improvements and fixes to strchr_esc_mysql
The C style comments were not ignored and the -- style comments
did not check for the trailing whitespace and made return values char*.

The creation of a stored procedure would prevent sessions from using
any of the slave servers because readwritesplit would interpret
the creation statement as a multi-statement query.

Parts of modutil and readwritesplit now compare pointers to pointers instead of
converting pointers to integers.
2016-03-02 21:34:22 +02:00
Markus Makela
9bfef5c7c1 Improved multi-statement detection in readwritesplit
Now comment blocks and identifiers quoted with backticks are taken into
consideration when multi-statements are processed.
2016-03-02 21:27:34 +02:00
Johan Wikman
cb3213af63 server/include/poll.h renamed to server/include/maxscale/poll.h
Due to an include conflict between /usr/include/poll.h and
maxscale/server/include/poll.h the latter was moved to
maxscale/server/include/maxscale/poll.h.

Once 1.4 is out, all maxscale header files will be moved to that
same sub-directory. That will prevent include conflicts and also
make it easy to see which include files belong to maxscale and
which do not.
2016-03-01 12:56:39 +02:00
counterpoint
bd02835139 Fiddle around with spaces. 2016-01-08 13:47:34 +00:00
counterpoint
4461cd9398 Streamline modutil_get_complete_packets code. No external impact. 2016-01-08 13:47:34 +00:00
Johan Wikman
c0615408aa Reindented server/core/modutil.c 2015-11-30 18:53:42 +02:00
Markus Makela
b67232a4fa Fixed out-of-bounds reads of packet length
modutil_get_complete_packets was assuming that at least 3 bytes of each packet
is available. This results in an out-of-bounds read if less than 3 bytes of data
for a partial result set is available.
2015-11-26 13:33:49 +02:00
Johan Wikman
44df53d846 LOGIF and skygw_write_log removed from server/core/*.c
LOGIF and skygw_write_log removed from server/core/*.c and
replaced with calls to MXS_(ERROR|WARNING|NOTICE|INFO|DEBUG).
This is a mechanism change, no updating of the actual message
has been performed.

Currently this causes a very small performance hit, since the
check whether the priority is enabled or not is performed in
the function that is called and not before the function is called.
Once all LOGIFs and skygw_write_logs have been replaced, the
behaviour will be altered back to what it was.
2015-11-16 09:49:12 +02:00
Johan Wikman
834a88aeda Log variables moved to log_manager.h
The log manager variables lm_enabled_log_files_bitmask, log_ses_count
and tls_log_info that earlier were declared separately in every
c-file are now declared in the log_manager.h header.
2015-11-04 14:26:53 +02:00
Markus Makela
3187f2c3f8 Updated code based on review of 9a04984 2015-10-31 10:34:37 +02:00
Markus Makela
cd55f62051 Fix to MXS-29: https://mariadb.atlassian.net/browse/MXS-29
If MAXSCALE_SCHEMA.REPLICATION_HEARTBEAT isn't replicated, a warning is logged.
2015-10-31 10:34:37 +02:00
counterpoint
4a0925f33d Correct mistake in dcb_read; use larger integer to accomodate three byte length in modutil. 2015-07-19 09:10:48 +01:00
Markus Makela
5f076b81d4 Merge branch 'install_dir_change' into develop
Conflicts:
	CMakeLists.txt
	Documentation/Tutorials/Administration-Tutorial.md
	log_manager/CMakeLists.txt
	server/core/CMakeLists.txt
	server/core/gateway.c
	server/core/maxkeys.c
	server/core/maxpasswd.c
	server/modules/filter/test/CMakeLists.txt
	server/modules/routing/CMakeLists.txt
2015-05-26 13:34:39 +03:00
Yuval Hager
13200e8c74 MXS-137: correct calculation of query length when length is >= 0x80 2015-05-12 11:27:46 -07:00
Markus Makela
41ddc6fbfd Switched over to gwbuf_clone_portion in modutils_get_complete_packets.
Conflicts:
	server/core/modutil.c
2015-04-27 09:45:11 +03:00
Markus Makela
af7567d405 Switched over to gwbuf_clone_portion in modutils_get_complete_packets. 2015-04-27 09:43:22 +03:00
Markus Makela
fdca25db9f Revert "modutil_get_complete_packets now partially clones the buffer instead of allocating a new one."
This reverts commit b62f7f942bde10ea7d69d933c03513e315891d02.
2015-04-24 17:57:00 +03:00
Markus Makela
b62f7f942b modutil_get_complete_packets now partially clones the buffer instead of allocating a new one. 2015-04-24 17:20:20 +03:00
Markus Makela
3cb7466fea Fixed modutil_count_statements not igoring trailing whitespace. 2015-04-20 09:25:52 +03:00
Markus Makela
fa7e0ea7c0 Added error message for multi-statements to dbfwfilter. 2015-04-02 16:47:43 +03:00
Markus Makela
b416455f4f Added missing type to GWBUF returned from mysql_backend. 2015-03-22 16:53:51 +02:00
Markus Makela
6cfc2338c1 Small fix to modutil_get_complete_packets. 2015-03-22 10:33:35 +02:00
Markus Makela
e0ce987d72 Mysql_backend now only sends complete packets from the backend servers. 2015-03-22 08:56:18 +02:00
Markus Makela
55513cc998 Improved modutil_get_complete_packets to only allocate a single buffer. 2015-03-22 07:44:14 +02:00
Markus Makela
22849f7c90 Added support for multiple result sets. 2015-03-06 22:40:10 +02:00
Markus Makela
2aaa367c37 Merge branch 'develop' into tee_fixes 2015-03-06 18:27:41 +02:00
Markus Makela
3b76ed43c4 Added tee filter multi-statement support. 2015-03-04 04:20:46 +02:00
Markus Makela
692dd79235 Added binary protocol COM_STMT_PREPARE to modutil_get_SQL. 2015-03-03 14:42:55 +02:00
Markus Makela
f54b57d987 Fixed modutil_replace_SQL not modifying the packet length when the replacement was shorter. 2015-02-16 12:10:48 +02:00
Hartmut Holzgraefe
3ecf926092 prevent signed/unsigned conflicts 2015-02-14 15:34:11 +01:00
VilhoRaatikka
fca674b16a modutil.c: added modutil_reply_auth_error
mysql_backend.c:gw_change_user: instead of setting flags directly to replybuffer, set server command to backend's protocol object and reply the message directly to backend where flags are set and it is replied back to client.
2015-01-19 00:01:08 +02:00
VilhoRaatikka
f5d8e2366a modutil.c:modutil_reply_routing_error: Removed GWBUF type flag setting and added flags argument to function prototype so that the caller can set necessary flags and they are then copied to GWBUF which is first created in modutil_reply_rounting_error. 2015-01-17 23:07:06 +02:00
VilhoRaatikka
6d2b38d4b6 Complementary fix to #694,http://bugs.mariadb.com/show_bug.cgi?id=694
RWSplit router handles query processing errors that happened in router by sending parse error reply to client. routeQuery fails only when backend has failed.
2015-01-17 22:40:52 +02:00
Markus Makela
88a26f03ab Fix to bug 685: http://bugs.mariadb.com/show_bug.cgi?id=685
Added the missing detection of partial packets in the buffers.
2015-01-15 13:13:09 +02:00
Markus Makela
30d2742294 Fixed garbled data at end of modutil.c 2015-01-15 04:40:33 +02:00
Markus Makela
b635eb1493 Additional debugging info added to tee filter. 2015-01-14 21:13:52 +02:00
Markus Makela
7f4675cd57 Fix to bug 685: http://bugs.mariadb.com/show_bug.cgi?id=685
Added the missing ERR packet detection to modutil functions.
2015-01-13 21:32:04 +02:00
Markus Makela
d194af0733 Moved result set processing functions to modutil.c from tee.c. 2015-01-13 09:45:58 +02:00
Markus Makela
e27b51392a Changed SIZE_MAX references to values calculated at runtime. 2015-01-05 11:38:54 +02:00
Markus Makela
ba009e5fd3 Fixes to Coverity defects 85010 84878 72752 72742 72719 and 73418.
skygw_utils.cc: Added function is_valid_posix_path that checks if a path is POSIX-compliant.
2015-01-05 06:05:56 +02:00
VilhoRaatikka
6228be4284 Fix to bug #678, http://bugs.skysql.com/show_bug.cgi?id=678
tee.c:routeQuery cloned partial MySQL packets to be routed to child router. Problems were due to the use of gwbuf_clone and modutil_MySQL_query which clone/examine only the first buffer from the buffer list which composes GWBUF.
modutil.c: Added function modutil_MySQL_query_len which calculates MySQL packet length and the missing bytecount
2015-01-02 18:32:57 +02:00
Markus Makela
04a92e40df Fixes to Coverity defects 84879 84878 72752 72742 2014-12-15 06:28:47 +02:00
VilhoRaatikka
c31f971999 Fix candidate for #645, http://bugs.skysql.com/show_bug.cgi?id=645 and #648, http://bugs.skysql.com/show_bug.cgi?id=648
If readwritesplit.c:routeQuery gets a GWBUF whose type is UNDEFINED, then each MySQL packet is extracted from input buffer and passed to new function, route_single_stmt. Each extracted packet is stored in separate GWBUF and added types GWBUF_TYPE_MYSQL and GWBUG_TYPE_SINGLE_STMT which makes it possible to execute session commands and process reply packets properly.

Code nedes still cleaning but this is for testing atm.
2014-12-13 01:55:40 +02:00
Markus Makela
1e2027f4dc Fixes to Coverity defects 83027 73421 72714 72671 72646 72642 2014-12-03 17:56:22 +02:00
Mark Riddoch
ca677f90ec Bug 551 - added new routine to return NULL terminated query text
Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
Bug 551 - added new routine to return NULL terminated query text

Fixed issue in qlafilter that put filebase value into source value
2014-11-06 17:59:20 +00:00
VilhoRaatikka
00fded016b Fixes to Coverity tasks : 73267, 72686, 72672
Cleaned up warnings, and added checks to malloc return values and error log writes in case of failures.
2014-10-31 15:25:59 +02:00
MassimilianoPinto
c207b8b990 Added routines comment
Added routines comment
2014-10-24 12:33:38 +02:00
MassimilianoPinto
970511a275 Update for message errors in DB authentication
Update for message errors in DB authentication
2014-10-24 12:20:50 +02:00
MassimilianoPinto
48423f75f6 Merge branch 'develop' into MAX-309 2014-10-24 09:39:42 +02:00