Re: compiling okay, success running gtk-app computer dependant
- From: Sven Neumann <sven gimp org>
- To: edward hage <edha xs4all nl>
- Cc: gtk-app-devel-list gnome org, gtk-list gnome org
- Subject: Re: compiling okay, success running gtk-app computer dependant
- Date: Sat, 27 Nov 2004 16:51:55 +0100
Hi,
edward hage <edha xs4all nl> writes:
> I narrowed the problem down to this program. The following program
> shows a Segmetation Fault on one computer, and works fine for the
> other.
gdb clearly shows that the crash happens in exit() so it is unlikely
that a GLib function is causing your problem.
> 9: struct tm tms;
> 14:
> 15: tms = *localtime (¤t_time);
That's a rather interesting use of localtime(). I guess you wanted to
write this instead:
struct tm *tms;
tms = localtime (¤t_time);
Sven
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]