Launchpad has imported 4 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=1000208.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.

------------------------------------------------------------------------
On 2013-08-23T00:33:45+00:00 triniton wrote:

Created attachment 789404
[1]

Description of problem:


tvtime crashes with exit status 139.

The attachment [1] contains a testcase (under ./crash) crashing the
program. It ensures that you can easily reproduce the bug. Additionally,
under ./crash_info/, we include more information about the crash such as
a core dump, the dmesg generated by the crash, and its output.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/tvtime/+bug/1215656/comments/6

------------------------------------------------------------------------
On 2013-08-23T00:36:45+00:00 triniton wrote:

Created attachment 789405
StacktraceSource

Reply at:
https://bugs.launchpad.net/ubuntu/+source/tvtime/+bug/1215656/comments/7

------------------------------------------------------------------------
On 2013-09-04T11:58:27+00:00 Tomas wrote:

Looks like a similar case to the bug #1000210: tvtime wants to read from
user's home directory and expects the HOME environment variable to be
set.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/tvtime/+bug/1215656/comments/9

------------------------------------------------------------------------
On 2013-12-16T04:26:11+00:00 POJAR wrote:

An workaround for this bug and bug #1000210:

In files src/tvtime-command.c
         src/tvtime-configure.c
         src/tvtime-scanner.c
         src/tvtime.c

add this lines after int main( int argc, char **argv ):

 int main( int argc, char **argv )
 {
+    if( !getenv( "HOME" ) ) {
+        fprintf( stderr, _("tvtime requires environment variable HOME to be 
set.\n") );
+        exit( 1 );
+    }
+
+    if( strlen( getenv( "HOME" ) ) > 230 ) {
+        fprintf( stderr, _("The environment variable HOME is too long.\n") );
+        exit( 1 );
+    }
+

Reply at:
https://bugs.launchpad.net/ubuntu/+source/tvtime/+bug/1215656/comments/10


** Changed in: tvtime (Fedora)
       Status: Unknown => Won't Fix

** Changed in: tvtime (Fedora)
   Importance: Unknown => Undecided

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1215656

Title:
  tvtime crashed with SIGSEGV in __GI___strdup()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tvtime/+bug/1215656/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to