On Tue, Mar 27, 2012 at 06:00, <s...@apache.org> wrote: > Author: stsp > Date: Tue Mar 27 10:00:07 2012 > New Revision: 1305800 > > URL: http://svn.apache.org/viewvc?rev=1305800&view=rev > Log: > * subversion/libsvn_wc/wc_db.c > (get_info_for_copy): Allow for NULL status parameter. Should have been > part of r1305793.
Woah! The way you implemented this won't work. Those if-branches need to be taken, in order to fill out other OUT parameters. Instead, you need a local status variable fetched from read_info(). Switch on that. And if STATUS is not NULL, then store the localvar into the output. >... Cheers, -g