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

Re: Unsure as to what an error message is really telling me

From: Ben Collins-Sussman <sussman_at_collab.net>
Date: 2003-10-10 04:50:18 CEST

"Hensley, Richard" <Richard.Hensley@McKesson.com> writes:

> I get the following message when I execute a diff command:
>
> wc $svn diff -r 127:128 Staff.java
> Index: Staff.java
> ===================================================================
> --- Staff.java (revision 127)
> +++ Staff.java (revision 128)
> @@ -36,1724 +36,1731 @@
> svn: Not enough storage is available to process this command.
> svn: svn_diff_file_output_unified: error writing hunk

Never seen this before. The error is happening in the internal
libsvn_diff library, line 571:

  /* Output the hunk content */
  hunk_len = baton->hunk->len;
  rv = apr_file_write(baton->output_file, baton->hunk->data, &hunk_len);
  if (rv != APR_SUCCESS)
    {
      return svn_error_create(rv, NULL,
               "svn_diff_file_output_unified: error writing hunk.");
    }

So it looks like the first error line is a message from the operating
system itself; it's coming from the apr_file_write() call.

Do you have any idea why your OS would say there's "not enough
storage" to write data to a temporary file?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Oct 10 04:52:26 2003

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

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