[As-users] Some DIFFS to correct crashed on Solaris
Fabrice Ilponse (fabrice@avertec.com)
Tue, 14 Sep 2004 17:32:43 +0200
This is a multi-part message in MIME format.
--------------050902010106080405030606
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Hi,
I've made some modifications to the source to avoid some crashes
under Solaris but i don't think i've got the access rights to commit
things in the cvs tree. So i've attached the 'cvs diff' with my current
sources. If someone can check and add them to cvs, that would be fine ;)
Bye
--------------050902010106080405030606
Content-Type: text/plain;
name="res"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="res"
? .res.swp
? AfterStep.desktop
? AfterStep.desktop.final
? AfterStep.spec
? Makefile
? config.h
? config.log
? config.status
? configure.h
? res
? afterstep/Makefile
? afterstep/audio
? afterstep/autoexec
? afterstep/base
? afterstep/pager
? afterstep/start/.include
? afterstep/start/1_Desktop/Color_Scheme/.include
? afterstep/start/1_Desktop/Feel/.include
? afterstep/start/1_Desktop/Look/.include
? afterstep/start/1_Desktop/Pictures/.include
? afterstep/start/1_Desktop/Theme/.include
? doc/Makefile
? doc/afterstepdoc
? libAfterBase/configure.lineno
? libAfterConf/Makefile
? libAfterImage/afterimage-config
? libAfterImage/configure.lineno
? libAfterImage/apps/ascompose
? libAfterImage/apps/asflip
? libAfterImage/apps/asgrad
? libAfterImage/apps/asi18n
? libAfterImage/apps/asmerge
? libAfterImage/apps/astext
? libAfterImage/apps/asvector
? libAfterStep/Makefile
? libAfterStep/afterstep-config
? src/Animate/Animate
? src/Animate/Makefile
? src/Audio/Makefile
? src/Banner/Banner
? src/Banner/Banner.sh
? src/Banner/Makefile
? src/Cascade/Makefile
? src/Clean/Makefile
? src/Form/Makefile
? src/Gadget/Makefile
? src/Gnome/Makefile
? src/Ident/Makefile
? src/Pager/Makefile
? src/Pager/Pager
? src/Save/Makefile
? src/Script/Makefile
? src/Script/Widgets/Makefile
? src/Scroll/Makefile
? src/Sound/Makefile
? src/Tile/Makefile
? src/Wharf/Makefile
? src/Wharf/Wharf
? src/WinList2/Makefile
? src/WinList2/WinList
? src/WinTabs/Makefile
? src/WinTabs/WinTabs
? src/afterstep/Makefile
? src/afterstep/afterstep
? src/afterstep/changed
? src/ascp/Makefile
? src/ascp/ascolor
? src/ascp/asimbrowser
? src/ascp/fltk/Makefile
? src/ascp/gtk/Makefile
? src/asetroot/Makefile
? src/test/Makefile
? tools/Makefile
? tools/installastheme.pl
? tools/makeastheme.pl
Index: src/afterstep/menus.c
===================================================================
RCS file: /home/cvsroot/afterstep-devel/src/afterstep/menus.c,v
retrieving revision 1.63
diff -r1.63 menus.c
247c247
< LOCAL_DEBUG_OUT( "item(\"%s\")->minipixmap(\"%s\")->icon(%p)", mdi->item, mdi->minipixmap?mdi->minipixmap:NULL, item->icon );
---
> LOCAL_DEBUG_OUT( "item(\"%s\")->minipixmap(\"%s\")->icon(%p)", mdi->item?mdi->item:"NULL", mdi->minipixmap?mdi->minipixmap:"NULL", item->icon );
Index: src/afterstep/pager.c
===================================================================
RCS file: /home/cvsroot/afterstep-devel/src/afterstep/pager.c,v
retrieving revision 1.66
diff -r1.66 pager.c
592c592
< LOCAL_DEBUG_OUT( "Attempting to load background image from \"%s\"", back->data );
---
> LOCAL_DEBUG_OUT( "Attempting to load background image from \"%s\"", back->data!=NULL?back->data:"NULL" );
701c701
< LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", back->data, im );
---
> LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", back->data!=NULL?back->data:"NULL", im );
707c707
< LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", imname, im );
---
> LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", imname?imname:"NULL", im );
718c718
< LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", const_configfile, im );
---
> LOCAL_DEBUG_OUT( "query_asimage \"%s\" - returned %p", const_configfile?const_configfile:"NULL", im );
786c786
< LOCAL_DEBUG_OUT( "fetch_asimage could not find the back \"%s\" - loading ", new_imname );
---
> LOCAL_DEBUG_OUT( "fetch_asimage could not find the back \"%s\" - loading ", new_imname?new_imname:"NULL" );
831c831
< LOCAL_DEBUG_OUT( "drawing root background using mystyle \"%s\" size %dx%d", style->name, root_width, root_height );
---
> LOCAL_DEBUG_OUT( "drawing root background using mystyle \"%s\" size %dx%d", style->name?style->name:"NULL", root_width, root_height );
853c853
< LOCAL_DEBUG_OUT( "im(%p)->ref_count(%d)->name(\"%s\")", new_im, new_im->ref_count, new_im->name );
---
> LOCAL_DEBUG_OUT( "im(%p)->ref_count(%d)->name(\"%s\")", new_im, new_im->ref_count, new_im->name?new_im->name:"NULL" );
1023c1023
< {LOCAL_DEBUG_OUT( "old_back>>> desk = %d, ptr = %p, loaded_im_name = \"%s\", pixmap = %lX", old_desk, old_back, old_back->loaded_im_name, old_back->loaded_pixmap );}
---
> {LOCAL_DEBUG_OUT( "old_back>>> desk = %d, ptr = %p, loaded_im_name = \"%s\", pixmap = %lX", old_desk, old_back, old_back->loaded_im_name!=NULL?old_back->loaded_im_name:"NULL", old_back->loaded_pixmap );}
1025c1025
< {LOCAL_DEBUG_OUT( "new_back>>> desk = %d, ptr = %p, loaded_im_name = \"%s\", pixmap = %lX", desk, new_back, new_back->loaded_im_name, new_back->loaded_pixmap );}
---
> {LOCAL_DEBUG_OUT( "new_back>>> desk = %d, ptr = %p, loaded_im_name = \"%s\", pixmap = %lX", desk, new_back, new_back->loaded_im_name!=NULL?new_back->loaded_im_name:"NULL", new_back->loaded_pixmap );}
? src/ASDocGen/ASDocGen
? src/ASDocGen/Makefile
--------------050902010106080405030606
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
As-users mailing list
As-users@afterstep.org
http://mail.afterstep.org/mailman/listinfo/as-users
--------------050902010106080405030606--