You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by vijay <vi...@collab.net> on 2010/12/21 20:32:48 UTC

[PATCH] Fix some deprecation warnings

Hi,

I have attached a patch that fixes few deprecation warnings while 
compiling libsvn_client/log.c.
Attached log message also.

Thanks & Regards,
Vijayaguru

Re: [PATCH] Fix some deprecation warnings

Posted by vijay <vi...@collab.net>.
On Wednesday 22 December 2010 11:32 AM, Noorul Islam K M wrote:
> vijay<vi...@collab.net>  writes:
>
>> Hi,
>>
>> I have attached a patch that fixes few deprecation warnings while
>> compiling libsvn_client/log.c.
>> Attached log message also.
>>
> I could see this usage at one more place,
> subversion/svn/commit-cmd.c. Do you think this can also be included as
> part of this patch?
>
Thanks Noorul.
Attached the updated patch that fixes deprecation warning in 
subversion/svn/commit-cmd.c also.

Regards,
Vijayaguru
> Thanks and Regards
> Noorul




Re: [PATCH] Fix some deprecation warnings

Posted by Noorul Islam K M <no...@collab.net>.
vijay <vi...@collab.net> writes:

> Hi,
>
> I have attached a patch that fixes few deprecation warnings while
> compiling libsvn_client/log.c.
> Attached log message also.
>

I could see this usage at one more place,
subversion/svn/commit-cmd.c. Do you think this can also be included as
part of this patch?

Thanks and Regards
Noorul

RE: [PATCH] Fix some deprecation warnings

Posted by Kamesh Jayachandran <ka...@collab.net>.
Thanks Vijay. 

Committed in r1052547.

With regards
Kamesh Jayachandran


-----Original Message-----
From: Vijayaguru Guruchave
Sent: Fri 12/24/2010 9:42 PM
To: dev@subversion.apache.org
Cc: Daniel Shahaf; Kamesh Jayachandran
Subject: Re: [PATCH] Fix some deprecation warnings
 
On Friday 24 December 2010 03:46 PM, vijay wrote:
> On Wednesday 22 December 2010 06:42 PM, Daniel Shahaf wrote:
>> Kamesh Jayachandran wrote on Wed, Dec 22, 2010 at 15:10:46 +0530:
>>> On 12/22/2010 02:02 AM, vijay wrote:
>>>> Hi,
>>>>
>>>> I have attached a patch that fixes few deprecation warnings while
>>>> compiling libsvn_client/log.c.
>>>> Attached log message also.
>>>>
>>>> Thanks&  Regards,
>>>> Vijayaguru
>>> Can you pass scratch_pool for the below call as 'iterpool' and move the
>>> iterpool destruction down?
>>>
>> ... presumably in order to save a bit of memory.
>>
>> Daniel
>> (not disagreeing)
>>
> I used iterpool in place of scratch pool and moved the iterpool 
> destruction down. There are two failures in log_tests.py:7 & 9 with 
> the following error_trace.
>
> <snip>
> CMD: /home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/svn/svn 
> log svn-test-work/working_copies/log_tests-7/A/B/E/beta@8 --config-dir 
> /home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/tests/cmdline/svn-test-work/local_tmp/config 
> --password rayjandom --no-auth-cache --username jrandom exited with 1
> <TIME = 0.034555>
> ../subversion/svn/log-cmd.c:743: (apr_err=22)
> ../subversion/libsvn_client/log.c:486: (apr_err=22)
> ../subversion/libsvn_client/ra.c:482: (apr_err=22)
> ../subversion/libsvn_client/url.c:53: (apr_err=22)
> ../subversion/libsvn_subr/dirent_uri.c:1667: (apr_err=22)
> ../subversion/libsvn_subr/utf.c:837: (apr_err=22)
> ../subversion/libsvn_subr/utf.c:604: (apr_err=22)
> svn: Valid UTF-8 data
> (hex:)
> followed by invalid UTF-8 sequence
> (hex: e0 65 30 00)
> Traceback (most recent call last):
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 1212, in run
>     rc = self.pred.run(sandbox)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/testcase.py", 
> line 170, in run
>     return self.func(sandbox)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/log_tests.py", 
> line 762, in log_wc_with_peg_revision
>     'log', my_path)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
> line 264, in run_and_verify_svn
>     expected_exit, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
> line 302, in run_and_verify_svn2
>     exit_code, out, err = main.run_svn(want_err, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 580, in run_svn
>     *(_with_auth(_with_config_dir(varargs))))
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 338, in run_command
>     None, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 513, in run_command_stdin
>     raise Failure
> Failure
> FAIL:  log_tests.py 7: 'svn log wc_target@N'
> <snip>
>
> The following function 'svn_uri_condense_targets()' stores its return 
> value of 'url_or_path' in scratch pool(here iterpool) which should not 
> be the case.
>
> SVN_ERR(svn_uri_condense_targets(&url_or_path, &condensed_targets,
>                                  target_urls, TRUE, pool, iterpool));
>
> We have to copy the return value from scratch pool to result pool 
> before exiting from the function, right?
> I will send a patch to fix it in dirent_uri.c: 
> svn_uri_condense_targets().
>
> Thanks & Regards,
> vijayaguru

The above mentioned bug is fixed in r1052505. Attaching the updated 
patch and log message.

Thanks & Regards,
Vijayaguru
>>> +      SVN_ERR(svn_uri_condense_targets(&url_or_path,&condensed_targets,
>>> +                                       target_urls, TRUE, pool, 
>>> pool));
>>>
>>>
>>>
>>>
>>> With regards
>>> Kamesh Jayachandran
>



Re: [PATCH] Fix some deprecation warnings

Posted by vijay <vi...@collab.net>.
On Friday 24 December 2010 03:46 PM, vijay wrote:
> On Wednesday 22 December 2010 06:42 PM, Daniel Shahaf wrote:
>> Kamesh Jayachandran wrote on Wed, Dec 22, 2010 at 15:10:46 +0530:
>>> On 12/22/2010 02:02 AM, vijay wrote:
>>>> Hi,
>>>>
>>>> I have attached a patch that fixes few deprecation warnings while
>>>> compiling libsvn_client/log.c.
>>>> Attached log message also.
>>>>
>>>> Thanks&  Regards,
>>>> Vijayaguru
>>> Can you pass scratch_pool for the below call as 'iterpool' and move the
>>> iterpool destruction down?
>>>
>> ... presumably in order to save a bit of memory.
>>
>> Daniel
>> (not disagreeing)
>>
> I used iterpool in place of scratch pool and moved the iterpool 
> destruction down. There are two failures in log_tests.py:7 & 9 with 
> the following error_trace.
>
> <snip>
> CMD: /home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/svn/svn 
> log svn-test-work/working_copies/log_tests-7/A/B/E/beta@8 --config-dir 
> /home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/tests/cmdline/svn-test-work/local_tmp/config 
> --password rayjandom --no-auth-cache --username jrandom exited with 1
> <TIME = 0.034555>
> ../subversion/svn/log-cmd.c:743: (apr_err=22)
> ../subversion/libsvn_client/log.c:486: (apr_err=22)
> ../subversion/libsvn_client/ra.c:482: (apr_err=22)
> ../subversion/libsvn_client/url.c:53: (apr_err=22)
> ../subversion/libsvn_subr/dirent_uri.c:1667: (apr_err=22)
> ../subversion/libsvn_subr/utf.c:837: (apr_err=22)
> ../subversion/libsvn_subr/utf.c:604: (apr_err=22)
> svn: Valid UTF-8 data
> (hex:)
> followed by invalid UTF-8 sequence
> (hex: e0 65 30 00)
> Traceback (most recent call last):
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 1212, in run
>     rc = self.pred.run(sandbox)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/testcase.py", 
> line 170, in run
>     return self.func(sandbox)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/log_tests.py", 
> line 762, in log_wc_with_peg_revision
>     'log', my_path)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
> line 264, in run_and_verify_svn
>     expected_exit, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
> line 302, in run_and_verify_svn2
>     exit_code, out, err = main.run_svn(want_err, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 580, in run_svn
>     *(_with_auth(_with_config_dir(varargs))))
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 338, in run_command
>     None, *varargs)
>   File 
> "/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
> line 513, in run_command_stdin
>     raise Failure
> Failure
> FAIL:  log_tests.py 7: 'svn log wc_target@N'
> <snip>
>
> The following function 'svn_uri_condense_targets()' stores its return 
> value of 'url_or_path' in scratch pool(here iterpool) which should not 
> be the case.
>
> SVN_ERR(svn_uri_condense_targets(&url_or_path, &condensed_targets,
>                                  target_urls, TRUE, pool, iterpool));
>
> We have to copy the return value from scratch pool to result pool 
> before exiting from the function, right?
> I will send a patch to fix it in dirent_uri.c: 
> svn_uri_condense_targets().
>
> Thanks & Regards,
> vijayaguru

The above mentioned bug is fixed in r1052505. Attaching the updated 
patch and log message.

Thanks & Regards,
Vijayaguru
>>> +      SVN_ERR(svn_uri_condense_targets(&url_or_path,&condensed_targets,
>>> +                                       target_urls, TRUE, pool, 
>>> pool));
>>>
>>>
>>>
>>>
>>> With regards
>>> Kamesh Jayachandran
>


Re: [PATCH] Fix some deprecation warnings

Posted by vijay <vi...@collab.net>.
On Wednesday 22 December 2010 06:42 PM, Daniel Shahaf wrote:
> Kamesh Jayachandran wrote on Wed, Dec 22, 2010 at 15:10:46 +0530:
>> On 12/22/2010 02:02 AM, vijay wrote:
>>> Hi,
>>>
>>> I have attached a patch that fixes few deprecation warnings while
>>> compiling libsvn_client/log.c.
>>> Attached log message also.
>>>
>>> Thanks&  Regards,
>>> Vijayaguru
>> Can you pass scratch_pool for the below call as 'iterpool' and move the
>> iterpool destruction down?
>>
> ... presumably in order to save a bit of memory.
>
> Daniel
> (not disagreeing)
>
I used iterpool in place of scratch pool and moved the iterpool 
destruction down. There are two failures in log_tests.py:7 & 9 with the 
following error_trace.

<snip>
CMD: /home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/svn/svn log 
svn-test-work/working_copies/log_tests-7/A/B/E/beta@8 --config-dir 
/home/vijayaguru/svn-sandbox/svn-trunk/vpath/subversion/tests/cmdline/svn-test-work/local_tmp/config 
--password rayjandom --no-auth-cache --username jrandom exited with 1
<TIME = 0.034555>
../subversion/svn/log-cmd.c:743: (apr_err=22)
../subversion/libsvn_client/log.c:486: (apr_err=22)
../subversion/libsvn_client/ra.c:482: (apr_err=22)
../subversion/libsvn_client/url.c:53: (apr_err=22)
../subversion/libsvn_subr/dirent_uri.c:1667: (apr_err=22)
../subversion/libsvn_subr/utf.c:837: (apr_err=22)
../subversion/libsvn_subr/utf.c:604: (apr_err=22)
svn: Valid UTF-8 data
(hex:)
followed by invalid UTF-8 sequence
(hex: e0 65 30 00)
Traceback (most recent call last):
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
line 1212, in run
     rc = self.pred.run(sandbox)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/testcase.py", 
line 170, in run
     return self.func(sandbox)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/log_tests.py", 
line 762, in log_wc_with_peg_revision
     'log', my_path)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
line 264, in run_and_verify_svn
     expected_exit, *varargs)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/actions.py", 
line 302, in run_and_verify_svn2
     exit_code, out, err = main.run_svn(want_err, *varargs)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
line 580, in run_svn
     *(_with_auth(_with_config_dir(varargs))))
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
line 338, in run_command
     None, *varargs)
   File 
"/home/vijayaguru/svn-sandbox/svn-trunk/subversion/tests/cmdline/svntest/main.py", 
line 513, in run_command_stdin
     raise Failure
Failure
FAIL:  log_tests.py 7: 'svn log wc_target@N'
<snip>

The following function 'svn_uri_condense_targets()' stores its return 
value of 'url_or_path' in scratch pool(here iterpool) which should not 
be the case.

SVN_ERR(svn_uri_condense_targets(&url_or_path, &condensed_targets,
                                  target_urls, TRUE, pool, iterpool));

We have to copy the return value from scratch pool to result pool before 
exiting from the function, right?
I will send a patch to fix it in dirent_uri.c: svn_uri_condense_targets().

Thanks & Regards,
vijayaguru
>> +      SVN_ERR(svn_uri_condense_targets(&url_or_path,&condensed_targets,
>> +                                       target_urls, TRUE, pool, pool));
>>
>>
>>
>>
>> With regards
>> Kamesh Jayachandran

Re: [PATCH] Fix some deprecation warnings

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
Kamesh Jayachandran wrote on Wed, Dec 22, 2010 at 15:10:46 +0530:
> On 12/22/2010 02:02 AM, vijay wrote:
>> Hi,
>>
>> I have attached a patch that fixes few deprecation warnings while  
>> compiling libsvn_client/log.c.
>> Attached log message also.
>>
>> Thanks & Regards,
>> Vijayaguru
>
> Can you pass scratch_pool for the below call as 'iterpool' and move the  
> iterpool destruction down?
>

... presumably in order to save a bit of memory.

Daniel
(not disagreeing)

> +      SVN_ERR(svn_uri_condense_targets(&url_or_path,&condensed_targets,
> +                                       target_urls, TRUE, pool, pool));
>
>
>
>
> With regards
> Kamesh Jayachandran

Re: [PATCH] Fix some deprecation warnings

Posted by Kamesh Jayachandran <ka...@collab.net>.
On 12/22/2010 02:02 AM, vijay wrote:
> Hi,
>
> I have attached a patch that fixes few deprecation warnings while 
> compiling libsvn_client/log.c.
> Attached log message also.
>
> Thanks & Regards,
> Vijayaguru

Can you pass scratch_pool for the below call as 'iterpool' and move the 
iterpool destruction down?

+      SVN_ERR(svn_uri_condense_targets(&url_or_path,&condensed_targets,
+                                       target_urls, TRUE, pool, pool));




With regards
Kamesh Jayachandran