public inbox for frysk-bugzilla@sourceware.org
help / color / mirror / Atom feed
* [Bug general/6490] New: memory leak in Environ.cxx?
@ 2008-05-07 19:28 cagney at redhat dot com
  0 siblings, 0 replies; only message in thread
From: cagney at redhat dot com @ 2008-05-07 19:28 UTC (permalink / raw)
  To: frysk-bugzilla

jlong
frysk::sys::Environ::putEnvironment(jobjectArray envs)
{
  jstring* env_member = (jstring*)elements(envs);
  int envs_length = JvGetArrayLength(envs);
  new_environ = (char**)JvMalloc(sizeof(void*) * envs_length);
  for (int i = 0; i < envs_length; i++)
    {
      int sym_len = env_member[i]->length ();
      char *sym = (char*)JvMalloc(sym_len + 1);

the call JvMalloc allocates untracked memory from the heap (i.e., it is not
garbage collected).

Looking at Fork.java:

    public static ProcessIdentifier ptrace(File exe,
                                           String in, String out,
                                           String err, String[] args, String li\
bs) {
        Environ environ = new Environ();
        environ.setEnv("LD_LIBRARY_PATH", libs);
        long env = environ.putEnviron();
        return spawn(exe, in, out, err, args, env, PTRACE);

I don't see the memory being released.

-- 
           Summary: memory leak in Environ.cxx?
           Product: frysk
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: general
        AssignedTo: frysk-bugzilla at sourceware dot org
        ReportedBy: cagney at redhat dot com
                CC: cagney at redhat dot com,scox at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=6490

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-07 19:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-07 19:28 [Bug general/6490] New: memory leak in Environ.cxx? cagney at redhat dot com

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 read-only IMAP folder(s) and NNTP newsgroup(s).