Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-18 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> Le 17.10.2005 21:48:01, Goedson Teixeira Paixao a écrit :
> >I believe I've found the code line to blame. Please apply the patch
> >attached to this message and test and let me know if it fixes the
> >problem.
> 
> Good guess! ... and fine fix.
> 
> It is working for me [tm].
> 
> There are no more warning at all during the build process. I managed to  
> erase a CD-RW, burn a data CD and built/write an ISO

Thank you for the help in testing. I'll upload a new package now.



-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-18 Thread Jean-Luc Coulon (f5ibh)

Le 17.10.2005 21:48:01, Goedson Teixeira Paixao a écrit :

I believe I've found the code line to blame. Please apply the patch
attached to this message and test and let me know if it fixes the
problem.


Good guess! ... and fine fix.

It is working for me [tm].

There are no more warning at all during the build process. I managed to  
erase a CD-RW, burn a data CD and built/write an ISO


Regards

Jean-Luc


pgpqrxva2AYQF.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Goedson Teixeira Paixao
I believe I've found the code line to blame. Please apply the patch
attached to this message and test and let me know if it fixes the
problem.

-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  
diff -ru ../gnomebaker-0.5.0.orig/src/exec.c ./src/exec.c
--- ../gnomebaker-0.5.0.orig/src/exec.c 2005-10-05 17:45:05.0 -0300
+++ ./src/exec.c2005-10-17 17:44:00.0 -0200
@@ -85,7 +85,7 @@
 static const gint BUFF_SIZE = 1024;
 gchar buffer[BUFF_SIZE];
 memset(buffer, 0x0, BUFF_SIZE * sizeof(gchar));
-guint bytes = 0;
+gsize bytes = 0;
 const GIOStatus status = g_io_channel_read_chars(channel, buffer, 
(BUFF_SIZE - 1) * sizeof(gchar), &bytes, NULL);  
 if (status == G_IO_STATUS_ERROR || status == G_IO_STATUS_AGAIN) /* 
need to check what to do for again */
 {
diff -ru ../gnomebaker-0.5.0.orig/src/gbcommon.h ./src/gbcommon.h
--- ../gnomebaker-0.5.0.orig/src/gbcommon.h 2005-09-30 21:06:58.0 
-0300
+++ ./src/gbcommon.h2005-10-17 17:43:41.0 -0200
@@ -74,7 +74,7 @@
 
 
 #define GB_LOG_FUNC
\
-   if(showtrace) g_print("[%x] [%s] [%s] [%d]\n", (guint)g_thread_self(), 
__FUNCTION__, __FILE__, __LINE__);   \
+   if(showtrace) g_print("[%p] [%s] [%s] [%d]\n", 
(gpointer)g_thread_self(), __FUNCTION__, __FILE__, __LINE__);\

 #define GB_TRACE   \
if(showtrace) g_message \


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> progressdlg.c: In function 'progressdlg_new':
> progressdlg.c:52: warning: cast from pointer to integer of different  
> size
> progressdlg.c: In function 'progressdlg_delete':
> progressdlg.c:84: warning: cast from pointer to integer of different  
> size
> progressdlg.c: In function 'progressdlg_get_window':
> progressdlg.c:104: warning: cast from pointer to integer of different  
> size

I've made a patch that should fix these warnings (the ones you posted
here). Please, try building with it and tell if there are any warnings
left.

-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  
diff -ru ../gnomebaker-0.5.0.orig/src/gbcommon.h ./src/gbcommon.h
--- ../gnomebaker-0.5.0.orig/src/gbcommon.h 2005-09-30 21:06:58.0 
-0300
+++ ./src/gbcommon.h2005-10-17 15:07:02.0 -0200
@@ -74,7 +74,7 @@
 
 
 #define GB_LOG_FUNC
\
-   if(showtrace) g_print("[%x] [%s] [%s] [%d]\n", (guint)g_thread_self(), 
__FUNCTION__, __FILE__, __LINE__);   \
+   if(showtrace) g_print("[%p] [%s] [%s] [%d]\n", 
(gpointer)g_thread_self(), __FUNCTION__, __FILE__, __LINE__);\

 #define GB_TRACE   \
if(showtrace) g_message \


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Jean-Luc Coulon (f5ibh)

Le 17.10.2005 15:05:58, Goedson Teixeira Paixao a écrit :

* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> No, it doesnt work neither, I got a SIGSEGV.
>
> I'be rebuilt it unstripped and I join the gdb session of just trying
to
> make an ISO image.

Thank you for the info. I'll investigate it further and report to
upstream.


Well, I've recompiled it with gcc-3.4.
It this case it doesnt crash but I get a "failed" indication iso  
creation.


When I display the messages, I've only this one:

INFO:   ISO-8859-15 character encoding detected by locale settings.
Assuming ISO-8859-15 encoded filenames on source filesystem,
use -input-charset to override.

The same for any operation like blanking a CD-RW.


I've no error displayed in the gdb windows.

Here are some of the cast error messages I got:


progressdlg.c: In function 'progressdlg_new':
progressdlg.c:52: warning: cast from pointer to integer of different  
size

progressdlg.c: In function 'progressdlg_delete':
progressdlg.c:84: warning: cast from pointer to integer of different  
size

progressdlg.c: In function 'progressdlg_get_window':
progressdlg.c:104: warning: cast from pointer to integer of different  
size

progressdlg.c: In function 'progressdlg_set_fraction':
progressdlg.c:113: warning: cast from pointer to integer of different  
size

progressdlg.c: In function 'progressdlg_append_output':

burn.c: In function 'burn_show_start_dlg':
burn.c:46: warning: cast from pointer to integer of different size
burn.c: In function 'burn_end_process':
burn.c:61: warning: cast from pointer to integer of different size
burn.c: In function 'burn_start_process':
burn.c:70: warning: cast from pointer to integer of different size
burn.c: In function 'burn_cd_iso':
burn.c:84: warning: cast from pointer to integer of different size


Regards

Jean-Luc


pgpyrS7hv0McN.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Jean-Luc Coulon (f5ibh)

Le 17.10.2005 15:05:58, Goedson Teixeira Paixao a écrit :

* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> No, it doesnt work neither, I got a SIGSEGV.
>
> I'be rebuilt it unstripped and I join the gdb session of just trying
to
> make an ISO image.

Thank you for the info. I'll investigate it further and report to
upstream.


I've just tested it in a 32 bit chroot (my working architecture is  
amd64). And it works in the chroot (not extended tests but at least the  
creation of an ISO works).


I'm investigating if -O0 instead of -O2 gives better results.

There are quite many warning message about pointer type casting at  
compile time. So maybe there are still some adjustements to make it to  
work with amd64.


Regards

Jean-Luc


pgpir9DFaNvuI.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> No, it doesnt work neither, I got a SIGSEGV.
> 
> I'be rebuilt it unstripped and I join the gdb session of just trying to  
> make an ISO image.

Thank you for the info. I'll investigate it further and report to
upstream. 

-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Jean-Luc Coulon (f5ibh)

Le 17.10.2005 13:37:39, Goedson Teixeira Paixao a écrit :

* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> It crashes (SIGSEGV) even if I ask only to build an iso. I can enter

> the name of the file I want it write and it segfaults immediately.

This seems to be related to the external tool execution code which has
been rewritten in 0.5.0. Could you please try this new version and
tell me if it works for you?


No, it doesnt work neither, I got a SIGSEGV.

I'be rebuilt it unstripped and I join the gdb session of just trying to  
make an ISO image.


Regards

Jean-Luc


/---
(gnomebaker:27634): libglade-WARNING **: unknown property  
`urgency_hint' for class `GtkDialog'

[New Thread 1074006368 (LWP 27640)]
[New Thread 1074272608 (LWP 27641)]
[New Thread 1074538848 (LWP 27642)]
[New Thread 1074805088 (LWP 27643)]

(gnomebaker:27634): libglade-WARNING **: unknown property  
`urgency_hint' for class `GtkDialog'


(gnomebaker:27634): libglade-WARNING **: unknown property  
`urgency_hint' for class `GtkDialog'


Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 46912575162896 (LWP 27634)]
0x2fcc1a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
(gdb) bt
#0  0x2fcc1a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
#1  0x2d7a15fb in iconv_close () from /lib/libc.so.6
#2  0x2d7a0ce5 in iconv () from /lib/libc.so.6
#3  0x2d4ef7b4 in g_convert_with_iconv ()
   from /usr/lib/libglib-2.0.so.0
#4  0x2d4efa7f in g_convert () from /usr/lib/libglib-2.0.so.0
#5  0x0040e750 in exec_channel_callback (channel=0xd591a0,
condition=G_IO_IN, data=0xccb4c0) at exec.c:98
#6  0x2d5054bd in g_main_context_dispatch ()
   from /usr/lib/libglib-2.0.so.0
#7  0x2d50866f in g_main_context_check ()
   from /usr/lib/libglib-2.0.so.0
#8  0x2d508b04 in g_main_context_iteration ()
   from /usr/lib/libglib-2.0.so.0
#9  0x2be4f3e1 in gtk_main_iteration ()
   from /usr/lib/libgtk-x11-2.0.so.0
#10 0x0040ea31 in exec_spawn_process (e=0xccb4c0,
child_setup=0x40ebb2 ) at exec.c:162
#11 0x0040f861 in exec_run (ex=0xc9aa80) at exec.c:424
#12 0x0040d374 in burn_start_process () at burn.c:74
#13 0x0040d9ce in burn_create_data_cd (datamodel=0xb2b210)
at burn.c:196
#14 0x0041de93 in datacd_on_create_datadisk (widget=0x9a96d0,
user_data=0x0) at datacd.c:720
#15 0x2cbcb470 in g_closure_invoke () from  
/usr/lib/libgobject-2.0.so.0

#16 0x2cbda032 in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#17 0x2cbdb50c in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#18 0x2cbdb8c3 in g_signal_emit () from  
/usr/lib/libgobject-2.0.so.0

#19 0x2bda0497 in _gtk_button_set_depressed ()
   from /usr/lib/libgtk-x11-2.0.so.0
#20 0x2cbcb470 in g_closure_invoke () from  
/usr/lib/libgobject-2.0.so.0

#21 0x2cbd9b80 in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#22 0x2cbdb50c in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#23 0x2cbdb8c3 in g_signal_emit () from  
/usr/lib/libgobject-2.0.so.0

#24 0x2bd9fac9 in _gtk_button_paint ()
   from /usr/lib/libgtk-x11-2.0.so.0
#25 0x2be51fa0 in _gtk_marshal_BOOLEAN__BOXED ()
   from /usr/lib/libgtk-x11-2.0.so.0
#26 0x2cbcb470 in g_closure_invoke () from  
/usr/lib/libgobject-2.0.so.0

#27 0x2cbda1dd in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#28 0x2cbdb247 in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#29 0x2cbdb8c3 in g_signal_emit () from  
/usr/lib/libgobject-2.0.so.0

#30 0x2bf2a235 in gtk_widget_activate ()
   from /usr/lib/libgtk-x11-2.0.so.0
#31 0x2be5039b in gtk_propagate_event ()
   from /usr/lib/libgtk-x11-2.0.so.0
#32 0x2be507fe in gtk_main_do_event ()
   from /usr/lib/libgtk-x11-2.0.so.0
#33 0x2c18b68c in _gdk_events_queue ()
   from /usr/lib/libgdk-x11-2.0.so.0
#34 0x2d5054bd in g_main_context_dispatch ()
   from /usr/lib/libglib-2.0.so.0
#35 0x2d50866f in g_main_context_check ()
   from /usr/lib/libglib-2.0.so.0
#36 0x2d50891a in g_main_loop_run () from  
/usr/lib/libglib-2.0.so.0

#37 0x2be4fc00 in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0
#38 0x0040c6b5 in main (argc=1, argv=0x7f86c548) at  
main.c:88

(gdb)



pgp3Z4UKkSVz5.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-17 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> It crashes (SIGSEGV) even if I ask only to build an iso. I can enter  
> the name of the file I want it write and it segfaults immediately.

This seems to be related to the external tool execution code which has
been rewritten in 0.5.0. Could you please try this new version and
tell me if it works for you?

Regards,

-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-06 Thread Jean-Luc Coulon (f5ibh)

Le 04.10.2005 16:04:44, Goedson Teixeira Paixao a écrit :

* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> >Does gnomebaker always crash on this machine when asking for the
blank
> >CD? Or were you able to burn CDs using it before?
>
> I've used it successfully before on x86 architecture, I've switched
to
> amd64 64bit architecture and I never managed to have it to work.

Was your successful experience with x86 architecture on the same
hardware you're using the amd64 architecture now?



It crashes (SIGSEGV) even if I ask only to build an iso. I can enter  
the name of the file I want it write and it segfaults immediately.



Regards

Jean-Luc


pgpH2xIUyKmo6.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-04 Thread Jean-Luc Coulon (f5ibh)

Le 04.10.2005 16:04:44, Goedson Teixeira Paixao a écrit :

* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> >Does gnomebaker always crash on this machine when asking for the
blank
> >CD? Or were you able to burn CDs using it before?
>
> I've used it successfully before on x86 architecture, I've switched
to
> amd64 64bit architecture and I never managed to have it to work.

Was your successful experience with x86 architecture on the same
hardware you're using the amd64 architecture now?


Yes it was exactly the same hardware.
I was using sid in 32 bit mode from January until May of this year,  
then I switched to 64 bit.


Regards

Jean-Luc


pgpg3WE9Ceq41.pgp
Description: PGP signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-10-04 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> >Does gnomebaker always crash on this machine when asking for the blank
> >CD? Or were you able to burn CDs using it before?
> 
> I've used it successfully before on x86 architecture, I've switched to  
> amd64 64bit architecture and I never managed to have it to work.

Was your successful experience with x86 architecture on the same
hardware you're using the amd64 architecture now?




-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-09-05 Thread Goedson Teixeira Paixao
* Jean-Luc Coulon (f5ibh) ([EMAIL PROTECTED]) wrote:
> Package: gnomebaker
> Version: 0.4.2-1
> Severity: important
> 
> Hi,
> 
> I can open the program, select some data files to burn on a CD and then while
> asking for a blank CD, it crashes. I got the following (I didnt manage to 
> figure
> out how to build it unstripped):

To build it unstripped, set DEB_BUILD_OPTIONS to nostrip, like this:

export DEB_BUILD_OPTIONS=nostrip

 
> Program received signal SIGSEGV, Segmentation fault.
> [Switching to Thread 46912576648240 (LWP 17178)]
> 0x2fe29a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
> 
> I managed to burn the same data with the same drive graveman.

Does gnomebaker always crash on this machine when asking for the blank
CD? Or were you able to burn CDs using it before?



-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-09-05 Thread Jean-Luc Coulon (f5ibh)

Hi,

Le 05.09.2005 15:14:34, Goedson Teixeira Paixao a écrit :

[ ... ]


To build it unstripped, set DEB_BUILD_OPTIONS to nostrip, like this:

export DEB_BUILD_OPTIONS=nostrip


Ok, I have rebuilt it an just ran it from gdb. You will find attached  
the gdb session with the backtrace. Please ask if you need other  
informations.





> Program received signal SIGSEGV, Segmentation fault.
> [Switching to Thread 46912576648240 (LWP 17178)]
> 0x2fe29a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
>
> I managed to burn the same data with the same drive graveman.

Does gnomebaker always crash on this machine when asking for the blank
CD? Or were you able to burn CDs using it before?


I've used it successfully before on x86 architecture, I've switched to  
amd64 64bit architecture and I never managed to have it to work.



Jean-Luc
[EMAIL PROTECTED] % file /usr/bin/gnomebaker
/usr/bin/gnomebaker: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), 
for GNU/Linux 2.6.0, dynamically linked (uses shared libs), not stripped
[EMAIL PROTECTED] % ggdb gnomebaker
zsh: correct 'ggdb' to 'gdb' [nyae]? y
GNU gdb 6.3-debian
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-linux"...Using host libthread_db library 
"/lib/libthread_db.so.1".

(gdb) run
Starting program: /usr/bin/gnomebaker
[Thread debugging using libthread_db enabled]
[New Thread 46912576648240 (LWP 16213)]
[New Thread 1082132832 (LWP 16247)]
[New Thread 1090525536 (LWP 16249)]
[New Thread 1098918240 (LWP 16252)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 46912576648240 (LWP 16213)]
0x2fe29a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
(gdb) bt
#0  0x2fe29a7d in gconv () from /usr/lib/gconv/ISO8859-1.so
#1  0x2dacc5fb in iconv_close () from /lib/libc.so.6
#2  0x2dacbce5 in iconv () from /lib/libc.so.6
#3  0x2d81a7b4 in g_convert_with_iconv ()
   from /usr/lib/libglib-2.0.so.0
#4  0x2d81aa7f in g_convert () from /usr/lib/libglib-2.0.so.0
#5  0x0040fe0b in exec_channel_callback (channel=0x7a60d0,
condition=G_IO_IN, data=0xcf75a8) at exec.c:169
#6  0x2d83046d in g_main_context_dispatch ()
   from /usr/lib/libglib-2.0.so.0
#7  0x2d83360f in g_main_context_check ()
   from /usr/lib/libglib-2.0.so.0
#8  0x2d8338ba in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#9  0x2bde381a in gtk_dialog_run () from /usr/lib/libgtk-x11-2.0.so.0
#10 0x0040e906 in burn_start_process (onthefly=1) at burn.c:146
#11 0x0040eeaf in burn_create_data_cd (datamodel=0xc4a240)
at burn.c:291
#12 0x0041d966 in datacd_on_create_datadisk (widget=0xa2c820,
user_data=0x0) at datacd.c:707
#13 0x2cf003c0 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#14 0x2cf0ef2c in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#15 0x2cf103ec in g_signal_emit_valist ()
---Type  to continue, or q  to quit---
   from /usr/lib/libgobject-2.0.so.0
#16 0x2cf107a3 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#17 0x2bd9e497 in _gtk_button_set_depressed ()
   from /usr/lib/libgtk-x11-2.0.so.0
#18 0x2cf003c0 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#19 0x2cf0eab1 in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#20 0x2cf103ec in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#21 0x2cf107a3 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#22 0x2bd9dac9 in _gtk_button_paint ()
   from /usr/lib/libgtk-x11-2.0.so.0
#23 0x2be4ffa0 in _gtk_marshal_BOOLEAN__BOXED ()
   from /usr/lib/libgtk-x11-2.0.so.0
#24 0x2cf003c0 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#25 0x2cf0f0ab in g_signal_stop_emission ()
   from /usr/lib/libgobject-2.0.so.0
#26 0x2cf10127 in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#27 0x2cf107a3 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#28 0x2bf28235 in gtk_widget_activate ()
   from /usr/lib/libgtk-x11-2.0.so.0
#29 0x2be4e39b in gtk_propagate_event ()
---Type  to continue, or q  to quit---
   from /usr/lib/libgtk-x11-2.0.so.0
#30 0x2be4e7fe in gtk_main_do_event ()
   from /usr/lib/libgtk-x11-2.0.so.0
#31 0x2c18968c in _gdk_events_queue ()
   from /usr/lib/libgdk-x11-2.0.so.0
#32 0x2d83046d in g_main_context_dispatch ()
   from /usr/lib/libglib-2.0.so.0
#33 0x2d83360f in g_main_context_check ()
   from /usr/lib/libglib-2.0.so.0
#34 0x2d8338ba in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#35 0x2be4dc00 in gtk_main () 

Bug#326474: gnomebaker: Segfault at beginning of burn step

2005-09-03 Thread Jean-Luc Coulon (f5ibh)
Package: gnomebaker
Version: 0.4.2-1
Severity: important

Hi,

I can open the program, select some data files to burn on a CD and then while
asking for a blank CD, it crashes. I got the following (I didnt manage to figure
out how to build it unstripped):

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 46912576648240 (LWP 17178)]
0x2fe29a7d in gconv () from /usr/lib/gconv/ISO8859-1.so

I managed to burn the same data with the same drive graveman.

Jean-Luc

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (900, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-k8-8
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages gnomebaker depends on:
ii  cdda2wav  4:2.01+01a01-4 Creates WAV files from audio CDs
ii  cdrdao1:1.1.9-3  Disk-At-Once (DAO) recording of au
ii  cdrecord  4:2.01+01a01-4 command line CD writing tool
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.0-1   The Bonobo UI library
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libgconf2-4   2.10.1-1   GNOME configuration database syste
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgstreamer0.8-0 0.8.10-2   Core GStreamer libraries, plugins,
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-6 Inter-Client Exchange library
ii  libogg0   1.1.2-1Ogg Bitstream Library
ii  liborbit2 1:2.12.2-3 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.8.2.dfsg.1-6 X Window System Session Management
ii  libvorbis0a   1.1.0-1The Vorbis General Audio Compressi
ii  libvorbisfile31.1.0-1The Vorbis General Audio Compressi
ii  libxml2   2.6.20-1   GNOME XML library
ii  mkisofs   4:2.01+01a01-4 Creates ISO-9660 CD-ROM filesystem
ii  xlibs 6.8.2.dfsg.1-6 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages gnomebaker recommends:
ii  dvd+rw-tools   5.21.4.10.8-1 DVD+-RW/R tools

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]