Closed GoogleCodeExporter closed 8 years ago
Can you give a specific site as it works with the Thor site.
Original comment by kdeko...@gmail.com
on 12 Apr 2012 at 10:13
Attachments:
Open
http://trailers.apple.com/trailers/independent/warriorsoftherainbowseediqbale/
and select the any of the trailers.
Original comment by vkr...@gmail.com
on 12 Apr 2012 at 10:18
That site works for me as well. Can you perhaps provide a better backtrace?
Original comment by kdeko...@gmail.com
on 12 Apr 2012 at 10:48
Attachments:
How can I do that? I mean gnome-player is started by the browser and the
crashes, what to I attach to?
Original comment by vkr...@gmail.com
on 13 Apr 2012 at 6:57
Ok, I've set core size ulimit to unlimited, and got a core file from
gnome-mplayer with the following stack trace:
Core was generated by `/usr/bin/gnome-mplayer --controlid=44825'.
Program terminated with signal 11, Segmentation fault.
#0 0x00007fc7f52a0e6d in g_ascii_strncasecmp (s1=0x1 <Address 0x1 out of
bounds>, s2=0x439da2 "dvd://", n=6) at gstrfuncs.c:2044
2044 gstrfuncs.c: No such file or directory.
in gstrfuncs.c
(gdb) bt
#0 0x00007fc7f52a0e6d in g_ascii_strncasecmp (s1=0x1 <Address 0x1 out of
bounds>, s2=0x439da2 "dvd://", n=6) at gstrfuncs.c:2044
#1 0x000000000042f95d in device_name (filename=0x1 <Address 0x1 out of
bounds>) at support.c:972
#2 0x000000000042fa78 in streaming_media (uri=0x1 <Address 0x1 out of bounds>)
at support.c:916
#3 0x000000000041ca15 in set_progress_value (data=0x64e950) at gui.c:640
#4 0x00007fc7f528258d in g_main_dispatch (context=0x6b37e0) at gmain.c:2425
#5 g_main_context_dispatch (context=0x6b37e0) at gmain.c:2995
#6 0x00007fc7f5282d88 in g_main_context_iterate (context=0x6b37e0,
block=<optimized out>, dispatch=1, self=<optimized out>) at gmain.c:3073
#7 0x00007fc7f52832c2 in g_main_loop_run (loop=0xc6d630) at gmain.c:3281
#8 0x00007fc7f793550d in gtk_main () at gtkmain.c:1362
#9 0x000000000040fda8 in main (argc=1, argv=0x7fffc03cdcd8) at main.c:1335
Original comment by vkr...@gmail.com
on 13 Apr 2012 at 7:37
Also, I replaced the gnome-mplayer executable with the following script in
order to run gnome-mplayer under valgrind. Valgrind logs are attached.
#!/bin/sh
exec valgrind /usr/bin/gnome-mplayer.x $* >/tmp/gnome_mplayer$$.log 2>&1
Original comment by vkr...@gmail.com
on 13 Apr 2012 at 7:45
Attachments:
Can you try changing line 607 in gui.c from
gchar *iterurl;
to
gchar *iterurl = NULL;
And see if that fixes your problem. I believe the issue is due to the usage of
an uninitialized pointer.
Original comment by kdeko...@gmail.com
on 13 Apr 2012 at 12:51
Yep, that does it. Thank you very much!
Original comment by vkr...@gmail.com
on 13 Apr 2012 at 10:24
Change committed to SVN, thanks for the report.
Original comment by kdeko...@gmail.com
on 14 Apr 2012 at 4:14
Original issue reported on code.google.com by
vkr...@gmail.com
on 12 Apr 2012 at 10:09