mirror of
https://github.com/php/php-gtk-src.git
synced 2026-04-27 11:03:28 +02:00
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
//idle_add segfault
|
|
//Fixed by andrei 2006-03-16
|
|
//Reason: Uninitialized variable
|
|
function cb() {
|
|
}
|
|
//segfaults
|
|
Gtk::idle_add('cb');
|
|
Gtk::main();
|
|
?>
|