vm2mv
b42d5b4fb8
* Net: fixed adding content part to mail message with empty content-disposition
2016-11-21 11:49:49 +03:00
Jan Viktorin
45642a3d4f
Support ODBC GUID data type as string
...
The ODBC defines SQL_GUID datatype in sqlext.h. It is used
e.g. for transfer of UUID datatype from PostgreSQL.
Signed-off-by: Jan Viktorin <viktorin@rehivetech.com>
2016-11-12 21:25:23 +01:00
Jan Viktorin
97cbd9f03d
ODBC: fix uninitialized variable
...
This prevents valgrind reports like:
==18426== Conditional jump or move depends on uninitialised value(s)
==18426== at 0x6423EB5: Poco::Data::StatementImpl::execute(bool const&) (in /usr/lib/libPocoDatad.so.46)
==18426== by 0x641DB5F: Poco::Data::Statement::execute(bool) (in /usr/lib/libPocoDatad.so.46)
==18426== by 0x632A0C: Poco::Data::Keywords::now(Poco::Data::Statement&) (Statement.h:443)
==18426== by 0x641C8E5: Poco::Data::Statement::operator,(void (*)(Poco::Data::Statement&)) (in /usr/lib/libPocoDatad.so.46)
...
==18426== Uninitialised value was created by a stack allocation
==18426== at 0x6A1A170: Poco::Data::ODBC::ODBCStatementImpl::affectedRowCount() const (in /usr/lib/libPocoDataODBCd.so.46)
Signed-off-by: Jan Viktorin <viktorin@rehivetech.com>
2016-11-10 19:52:38 +01:00
Guenter Obiltschnig
86483b4d4b
fixed GH #990 : Potential race condition in on Windows
2016-11-03 14:48:51 +01:00
Alexey Milovidov
6116136afe
Fixed error with Poco::UTF8Encoding::isLegal (wrong result on illegal sequence "\xED\x20\xA8").
2016-10-29 20:12:29 +02:00
Guenter Obiltschnig
3bd6689751
fixed GH #1472 : HTTP(S)StreamFactory should send a User-Agent header
2016-10-26 12:58:52 +02:00
Guenter Obiltschnig
df855c88b7
fixed GH #1462 : AbstractConfiguration::getUInt does not parse hex numbers
2016-10-24 09:41:49 +02:00
Guenter Obiltschnig
aa9987e0bc
fixed GH #1465 : Assertion violation in DateTime.cpp using ZipArchive
2016-10-22 14:27:49 +02:00
Guenter Obiltschnig
91f0b270a6
fixed GH #1464 : ODBCMetaColumn::init() always maps integer NUMERIC/DECIMAL to Int32
2016-10-22 10:06:43 +02:00
Guenter Obiltschnig
34f85a0531
branched off release 1.7.7
2016-10-21 22:20:03 +02:00
Guenter Obiltschnig
4d6d037997
updated release date
2016-10-18 22:25:49 +02:00
Guenter Obiltschnig
a8502dcccf
another fix for GH #1458 - handle case when all sockets are invalid
2016-10-18 18:13:52 +02:00
Guenter Obiltschnig
017adf836f
updated changelog
2016-10-17 19:08:58 +02:00
Guenter Obiltschnig
8290da2a82
fixed GH #1456 : better handle leap seconds in Poco::DateTime and Poco::LocalDateTime
2016-10-17 19:05:53 +02:00
Guenter Obiltschnig
69d632810e
fixed GH #1458 : always pass 1 to epoll_create()
2016-10-17 17:59:09 +02:00
Guenter Obiltschnig
2757bce0c3
use std::unique_ptr instead of std::auto_ptr if available
2016-10-16 14:00:10 +02:00
Guenter Obiltschnig
cae37d23fd
updated changelog
2016-10-16 13:40:33 +02:00
Guenter Obiltschnig
5df2508986
XMLConfiguration default (and single-argument delimiter) constructor now loads an empty XML document with "config" root element to make the configuration usable without an additional call to load() or loadEmpty().
2016-10-16 13:39:17 +02:00
Guenter Obiltschnig
f777325cea
updated release date
2016-10-14 15:52:58 +02:00
Guenter Obiltschnig
c4c5f18b97
fixed typo in testsuite
2016-10-14 11:51:23 +02:00
root
895c3dfcd5
use std::unique_ptr instead of std::auto_ptr with C++11+ compilers to prevent std::auto_ptr deprecation warnings
2016-10-14 11:49:45 +02:00
Guenter Obiltschnig
12fc175b5a
fixed warnings reported by GCC 6.2
2016-10-14 10:27:44 +02:00
Guenter Obiltschnig
946e00b77d
fix for GH #1449 : you can now compile Net with -DPOCO_SOCKETADDRESS_DONT_PREFER_IPV4 to prevent SocketAddress from preferring IPv4 over IPv6 addresses
2016-10-10 19:14:01 +02:00
Guenter Obiltschnig
cefab1f993
use #ifdef POCO_LONG_IS_64_BIT instead of if (sizeof(... to avoid warnings
2016-10-10 14:14:50 +02:00
Guenter Obiltschnig
59a78a55b5
added POCO_NO_SHARED_LIBRARY_DEBUG_SUFFIX configuration macro to disable *d.so, *d.dll suffix in SharedLibrary class
2016-10-10 11:56:58 +02:00
Guenter Obiltschnig
18eee84793
updated changelog
2016-10-07 22:29:23 +02:00
Guenter Obiltschnig
f9aa76f76d
added Yocto config; updated ARM-Linux config
2016-10-07 22:09:36 +02:00
Guenter Obiltschnig
5eab5f1144
improved EchoServer error handling
2016-10-07 22:02:57 +02:00
Guenter Obiltschnig
9b10c24b61
fixed bad disconnect handling in onSocketReadable
2016-10-07 21:54:20 +02:00
Guenter Obiltschnig
cdb2195ed3
fixed GH #1431 : Poco/FIFOBuffer.h copy issue
2016-10-07 21:27:07 +02:00
Guenter Obiltschnig
737bd98b17
fixed GH #1403 : Android compile with poco-1.7.5 no 'pthread_condattr_setclock' error
2016-10-07 21:05:57 +02:00
Guenter Obiltschnig
62241b9411
fixed GH #1422
2016-10-07 20:46:12 +02:00
Guenter Obiltschnig
6b47a37fdf
doc clarifications
2016-10-07 11:05:36 +02:00
Guenter Obiltschnig
80f95d7c16
add a load() overload to specify name pool size
2016-10-07 10:59:24 +02:00
Guenter Obiltschnig
e453ad144a
add optional name pool size argument to DOMParser constructor
2016-10-07 10:53:14 +02:00
Guenter Obiltschnig
ad99e73a60
increased default XML name pool size, added Document constructor taking name pool size as argument
2016-10-07 10:43:34 +02:00
Guenter Obiltschnig
b5036266be
backported #1445 : Use stable_sort to preserve order of IP addresses from DNS
2016-10-05 09:23:02 +02:00
Günter Obiltschnig
0e0fac80b6
improved Zip error handling (getting rid of poco_assert)
2016-09-29 19:13:21 +02:00
Günter Obiltschnig
4a96c934ba
improvement of URIStreamOpener::open() implementation
2016-09-29 19:06:46 +02:00
Günter Obiltschnig
07f6f77d6e
added URISyntaxException; better error handling in URIStreamOpener
2016-09-29 17:41:37 +02:00
Günter Obiltschnig
ed0284c7c6
fix for GH #1416 : use seekg() instead of multiple putback() operations, which may not work in all cases. Note that this requires the stream passed to Poco::Zip::Decompress to be seekable.
2016-09-29 11:25:03 +02:00
Guenter Obiltschnig
4c7562c497
style fix
2016-09-28 12:23:07 +02:00
Günter Obiltschnig
ac1f9f243d
Merge pull request #1435 from tomaz-beltram/gh-1429
...
MongoDB BSON type 0x11 support, fixes #1429
2016-09-28 11:58:26 +02:00
Tomaz Beltram
b042b892db
Renamed SpecialTimestamp to BSONTimestamp
2016-09-28 10:58:46 +02:00
Tomaz Beltram
584a776d77
Revert "Renamed MongoDB::SpecialTimestamp to MongoDB::Timestamp"
...
This reverts commit 06f6f05566
.
2016-09-28 10:55:05 +02:00
Tomaz Beltram
06f6f05566
Renamed MongoDB::SpecialTimestamp to MongoDB::Timestamp
2016-09-28 10:47:14 +02:00
Tomaz Beltram
1852739547
MongoDB BSON type 0x11 support, fixes #1429
2016-09-28 10:16:03 +02:00
Guenter Obiltschnig
caed8507f4
fixed issues reported by Klocwork
2016-09-26 18:20:32 +02:00
Guenter Obiltschnig
8d053e259c
fixed issues reported by Klocwork
2016-09-26 18:15:43 +02:00
Guenter Obiltschnig
7c43cc8ec2
fixed issues reported by Klocwork
2016-09-26 18:15:36 +02:00