Re: [Valgrind-users] valgrinding a SSL application

2017-01-05 Thread Tom Hughes
On 05/01/17 15:46, Ivo Raisr wrote: > 2017-01-05 12:54 GMT+01:00 Matthias Apitz >: > > I'm 'valgrinding' a huge client/server application, where the server > runs on Linux (SLES 12) and uses SSL (OpenSSL) to communicate with the > clients.

Re: [Valgrind-users] valgrinding a SSL application

2017-01-05 Thread Ivo Raisr
2017-01-05 12:54 GMT+01:00 Matthias Apitz : > > Hello, > > I'm 'valgrinding' a huge client/server application, where the server > runs on Linux (SLES 12) and uses SSL (OpenSSL) to communicate with the > clients. > > Valgrind is complaining a lot on any SSL function call (some

[Valgrind-users] Val-grind with ODBC

2017-01-05 Thread Jaime Tun
Hello everyone, I am using ODBC in C to communicate with any DB. I connect using client->retcode = SQLDriverConnect(client->dbc, NULL, (SQLTCHAR*) dsn,

[Valgrind-users] Unable to compile on Mac OS X 10.11

2017-01-05 Thread Gabriel Gritsch
Hi all, I am unable to compile on Mac OS X 10.11.6 Xcode command line tools are installed. Downloaded the valgrind version 3.12.0 from official site: http://www.valgrind.org/downloads/current.html http://www.valgrind.org/downloads/valgrind-3.12.0.tar.bz2 ./configure (without arguments) runs

Re: [Valgrind-users] Unable to compile on Mac OS X 10.11

2017-01-05 Thread Philippe Waroquiers
On Thu, 2017-01-05 at 13:21 +0100, Gabriel Gritsch wrote: > thank you for the quick answer - it worked. > > I was unable to search the mailing list because the mentioned urls seem to be > down: > http://news.gmane.org/gmane.comp.debugging.valgrind > http://search.gmane.org Yes, the gmane

Re: [Valgrind-users] Unable to compile on Mac OS X 10.11

2017-01-05 Thread Philippe Waroquiers
On Thu, 2017-01-05 at 10:44 +0100, Gabriel Gritsch wrote: > I am unable to compile on Mac OS X 10.11.6 Problem was already reported on this list the 23 of December, a bypass/solution was given by John Reiser. Here is a copy: > Undefined symbols for architecture x86_64: > > "___bzero",

Re: [Valgrind-users] Unable to compile on Mac OS X 10.11

2017-01-05 Thread Gabriel Gritsch
thank you for the quick answer - it worked. I was unable to search the mailing list because the mentioned urls seem to be down: http://news.gmane.org/gmane.comp.debugging.valgrind http://search.gmane.org thank you and best regards Gabriel > Am 05.01.2017 um 11:47 schrieb Philippe Waroquiers

[Valgrind-users] valgrinding a SSL application

2017-01-05 Thread Matthias Apitz
Hello, I'm 'valgrinding' a huge client/server application, where the server runs on Linux (SLES 12) and uses SSL (OpenSSL) to communicate with the clients. Valgrind is complaining a lot on any SSL function call (some 20.000 lines) before the first data is exchanged, i.e. on creating the SSL

Re: [Valgrind-users] valgrinding a SSL application

2017-01-05 Thread John Reiser
> Valgrind is complaining a lot on any SSL function call (some 20.000 > lines) before the first data is exchanged [[snip]] > What is the correct way to deal with this? The FAQ for Openssl gives the solution. --