ABORT & ROLLBACK
... like CVS, mailing does not provide full ACID semantics ...
Stefan
On Wed, May 02, 2007 at 11:49:28PM +0200, Stefan Manegold wrote:
> Sjoerd,
>
> didn't like my fix? ;-)
>
> Well, actually, I'm afraid you just re-introduced the problem:
> in short
>
>
> size_t max
Sjoerd,
didn't like my fix? ;-)
Well, actually, I'm afraid you just re-introduced the problem:
in short
size_t maxbufsize = 0;
char *nme = NULL;
while (...)
{
...
if (maxbufsize < strlen(tpe) + 4) {
maxbufsize = strlen(tpe) + 4;
nme = nme
This problem has gone -- thanks.
The next one is already reported :)
On 04/29/2007 12:19 PM, Stefan Manegold wrote with possible deletions:
> Jan,
>
> a similar problem actually occurred with nightly testing on Solaris/x86; cf.
> http://sourceforge.net/tracker/index.php?func=detail&aid=1709182&gr
Fabian Groffen wrote:
> Hi Jan,
>
> I experience the same issue. The attached patch works for me. I'm not
> sure why it worked for Sjoerd here, so I'm not committing.
Because I tried it on Windows using the Intel compiler.
> On 02-05-2007 09:52:24 +0200, Jan Flokstra wrote:
>> I have great com
Fixed.
Jan Flokstra wrote:
> I have great compilation troubles with the last lesson from the master:-) The
> compiler doesn not know the realloc() and the malloc() function() in the
> current setting. When I change them into PFrealloc() and PFmalloc() it
> compiles. But then I still have proble
Hi Jan,
I experience the same issue. The attached patch works for me. I'm not
sure why it worked for Sjoerd here, so I'm not committing.
On 02-05-2007 09:52:24 +0200, Jan Flokstra wrote:
> I have great compilation troubles with the last lesson from the master:-) The
> compiler doesn not know
I have great compilation troubles with the last lesson from the master:-) The
compiler doesn not know the realloc() and the malloc() function() in the
current setting. When I change them into PFrealloc() and PFmalloc() it
compiles. But then I still have problems with the "free(buf);" line. There