linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Alain Birtz <abz@videotron.ca>
To: linuxppc-dev@lists.linuxppc.org
Subject: Realloc() problem with Efence
Date: Wed, 28 Jul 1999 16:48:42 -0500	[thread overview]
Message-ID: <379F7AB9.E8D230CE@videotron.ca> (raw)


What is wrong with this code ?
Code is executed correctly without Electric Fence
But linked with Efence library, dbg complaint:

   Electric Fence 2.0.5 Copyright (C) 1987-1998 Bruce Perens.
   ...
   ...
   Program received signal SIGSEGV, Segmentation fault.

when trying to write the first B, just after the first memory allocation
buffer
(at the instruction (*c_ptr++ = 'B'))


void tst ()
{
 int i;
 char *c_buf, *c_ptr, *temp_c_buf;

 c_buf = (char *)malloc(5000);
 if (c_buf != NULL)
  {
  c_ptr = c_buf;
  for (i = 0; i < 5000; i++)
   *c_ptr++ = 'A';
  temp_c_buf = c_buf;
  realloc(temp_c_buf, 5000 + 5000);
  if (temp_c_buf != NULL)
   {
   for (i = 0; i < 5000; i++)
    *c_ptr++ = 'B';
   }
  }
}




[[ This message was sent via the linuxppc-dev mailing list.  Replies are ]]
[[ not  forced  back  to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting.   ]]

             reply	other threads:[~1999-07-28 21:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-07-28 21:48 Alain Birtz [this message]
1999-07-28 20:03 ` Realloc() problem with Efence Nicholas T Ingolia
1999-07-28 20:54 ` Jerry Quinn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=379F7AB9.E8D230CE@videotron.ca \
    --to=abz@videotron.ca \
    --cc=linuxppc-dev@lists.linuxppc.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).