Re: Various small fixes to 4.6.2-pre1

2007-11-02 Thread Oswald Buddenhagen
On Fri, Nov 02, 2007 at 11:42:27AM +0100, Vladimir Nadvornik wrote: On ??tvrtek 01 listopad 2007, Oswald Buddenhagen wrote: On Thu, Nov 01, 2007 at 04:48:02PM +0100, Vladimir Nadvornik wrote: --- mc-4.6.2-pre1/vfs/smbfs.c -result = g_strconcat (my_remote, trailing_asterik ? /* : , 0);

Re: Various small fixes to 4.6.2-pre1

2007-11-02 Thread Pavel Tsekov
Hello Vladimir, Original-Nachricht Datum: Thu, 1 Nov 2007 16:48:02 +0100 Von: Vladimir Nadvornik Betreff: Various small fixes to 4.6.2-pre1 mc-getpwuid.patch - prevents a crash if getpwuid returns NULL Applied. mc-NULL.patch - fixes various compiler warnings about NULL

Re: Various small fixes to 4.6.2-pre1

2007-11-01 Thread Oswald Buddenhagen
On Thu, Nov 01, 2007 at 04:48:02PM +0100, Vladimir Nadvornik wrote: --- mc-4.6.2-pre1/vfs/smbfs.c -result = g_strconcat (my_remote, trailing_asterik ? /* : , 0); +result = g_strconcat (my_remote, trailing_asterik ? /* : , (char *) NULL); the use of NULL is discouraged, at least in