You are not logged in.
Pages: 1
Hi, everyone.
I am currently having a problem with geany and its plugins.
I am using a very easy testing code in C to test its debugger:
#include<stdio.h>
int main()
{
int i,sum=0;
for(i=1;i<=100;i++)
sum+=i;
printf("%d\n",sum);
return 0;
}then I gcc -g the file and selected it with geany debugger. However, when I click on 'run' in the debugger, Geany crashes. Here's what I got from terminal:
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: g_string_free: assertion 'string != NULL' failed
(geany:27984): GLib-CRITICAL **: Source ID 1716 was not found when attempting to remove it
Segmentation fault (core dumped)Any idea about the issue?
Offline
No one has any idea? I really like this lightweight IDE
Offline
It sounds like an upstream bug. I suggest to contact their maillist for more help. http://www.geany.org/Support/MailingList#users
Read it before posting http://www.catb.org/esr/faqs/smart-questions.html
Ruby gems repository done right https://bbs.archlinux.org/viewtopic.php?id=182729
Fast initramfs generator with security in mind https://wiki.archlinux.org/index.php/Booster
Offline
Pages: 1