[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Crash in WIN32 after (supposedly) successful commit

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2003-03-17 19:23:36 CET

Joerg Hessdoerfer <Joerg.Hessdoerfer@sea-gmbh.com> writes:

> I'll build in the NULL-Ptr check tomorrow (I'm not at the machine
> anymore) and see what happens.

Try this patch

Index: subversion/libsvn_wc/entries.c
===================================================================
--- subversion/libsvn_wc/entries.c (revision 5358)
+++ subversion/libsvn_wc/entries.c (working copy)
@@ -439,7 +439,10 @@
   attributes = svn_xml_make_att_hash (atts, accum->pool);
   err = svn_wc__atts_to_entry (&entry, &modify_flags, attributes, accum->pool);
   if (err)
- svn_xml_signal_bailout (err, accum->parser);
+ {
+ svn_xml_signal_bailout (err, accum->parser);
+ return;
+ }
         
   /* Find the name and set up the entry under that name. This
      should *NOT* be NULL, since svn_wc__atts_to_entry() should

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Mar 17 19:24:18 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.