public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: swagiaal@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: swagiaal: Fixed bz#5992
Date: Tue, 01 Apr 2008 15:22:00 -0000	[thread overview]
Message-ID: <20080401152234.19071.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  164a248e5e4f8d6cf95d0ffcb2e58ea2b96bdf5a (commit)
      from  7c7ed873d17e51c732952f9194a8f7e6dfd635db (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 164a248e5e4f8d6cf95d0ffcb2e58ea2b96bdf5a
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Tue Apr 1 11:21:47 2008 -0400

    swagiaal: Fixed bz#5992
    
    frysk-sys/lib/dwfl/ChangeLog
    +2008-04-01  Sami Wagiaalla  <swagiaal@redhat.com>
    +
    +	* cni/DwflLine.cxx (DwflLine::dwfl_linecomp_dir): added
    +	NULL check.
    +

-----------------------------------------------------------------------

Summary of changes:
 frysk-sys/lib/dwfl/ChangeLog        |    5 +++++
 frysk-sys/lib/dwfl/cni/DwflLine.cxx |    3 +++
 2 files changed, 8 insertions(+), 0 deletions(-)

First 500 lines of diff:
diff --git a/frysk-sys/lib/dwfl/ChangeLog b/frysk-sys/lib/dwfl/ChangeLog
index fe504d9..d7fe24a 100644
--- a/frysk-sys/lib/dwfl/ChangeLog
+++ b/frysk-sys/lib/dwfl/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-01  Sami Wagiaalla  <swagiaal@redhat.com>
+
+	* cni/DwflLine.cxx (DwflLine::dwfl_linecomp_dir): added
+	NULL check.
+
 2008-03-13  Tim Moore  <timoore@redhat.com>
 
 	* cni/Dwfl.cxx: Add declaration for elfutils'
diff --git a/frysk-sys/lib/dwfl/cni/DwflLine.cxx b/frysk-sys/lib/dwfl/cni/DwflLine.cxx
index 1980676..93df8ae 100644
--- a/frysk-sys/lib/dwfl/cni/DwflLine.cxx
+++ b/frysk-sys/lib/dwfl/cni/DwflLine.cxx
@@ -75,5 +75,8 @@ lib::dwfl::DwflLine::dwfl_lineinfo_col(){
 jstring
 lib::dwfl::DwflLine::dwfl_linecomp_dir(){
 	const char *dir = ::dwfl_line_comp_dir(DWFL_LINE_POINTER);	
+	if(dir == NULL){
+	  return JvNewStringUTF("");
+	}
 	return JvNewStringUTF(dir);
 }


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2008-04-01 15:22 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20080401152234.19071.qmail@sourceware.org \
    --to=swagiaal@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.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 read-only IMAP folder(s) and NNTP newsgroup(s).