unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Dan Nicolaescu <dann@ics.uci.edu>
Subject: Problem report #50
Date: Sun, 09 Apr 2006 00:00:08 -0700	[thread overview]
Message-ID: <200604090700.k39708eD005573@scanner2.ics.uci.edu> (raw)



ERROR
CID: 50
Checker: REVERSE_INULL (help)
File: emacs/src/xrdb.c
Function: get_user_app
Description: Pointer "free_it" dereferenced before NULL check

Event deref_ptr_in_call: Dereferences pointer "free_it" [model]
Also see events: [check_after_deref]
At conditional (1): "file = search_magic_path != 0" taking false path
At conditional (2): "file = search_magic_path != 0" taking false path

419  	  if (((path = getenv ("XUSERFILESEARCHPATH"))
420  	       && (file = search_magic_path (path, class, 0, 0)))
421  	
422  	      /* Check for APPLRESDIR; it is a path of directories.  In each,
423  		 we have to search for LANG/CLASS and then CLASS.  */
424  	      || ((path = getenv ("XAPPLRESDIR"))
425  		  && ((file = search_magic_path (path, class, "/%L/%N", 0))
426  		      || (file = search_magic_path (path, class, "/%N", 0))))
427  	
428  	      /* Check in the home directory.  This is a bit of a hack; let's
429  		 hope one's home directory doesn't contain any %-escapes.  */
430  	      || (free_it = gethomedir (),
431  		  ((file = search_magic_path (free_it, class, "%L/%N", 0))
432  		   || (file = search_magic_path (free_it, class, "%N", 0)))))
433  	    {
434  	      XrmDatabase db = XrmGetFileDatabase (file);
435  	      free (file);
436  	      if (free_it)
437  		free (free_it);
438  	      return db;
439  	    }
440  	

Event check_after_deref: Pointer "free_it" dereferenced before NULL check
Also see events: [deref_ptr_in_call]

441  	  if (free_it)
442  	    free (free_it);
443  	  return NULL;
444  	}
445 

             reply	other threads:[~2006-04-09  7:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-09  7:00 Dan Nicolaescu [this message]
2006-04-10  9:35 ` Problem report #50 Andreas Schwab

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=200604090700.k39708eD005573@scanner2.ics.uci.edu \
    --to=dann@ics.uci.edu \
    --cc=emacs-devel@gnu.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.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).