public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master: swagiaal: Fixed bz#5992
@ 2008-04-01 15:22 swagiaal
  0 siblings, 0 replies; only message in thread
From: swagiaal @ 2008-04-01 15:22 UTC (permalink / raw)
  To: frysk-cvs

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


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

only message in thread, other threads:[~2008-04-01 15:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-01 15:22 [SCM] master: swagiaal: Fixed bz#5992 swagiaal

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