Yes, that's so. The number of param passing depends on detailed signal
which is invoked. For instance, &quot;clicked&quot; is a signal that invokes <br><br><div class="code_highlight code-box" style="unicode-bidi: embed; direction: ltr;"><code><span style="color: rgb(0, 0, 0);">
void&nbsp;user_function&nbsp;(GtkButton&nbsp;*button,&nbsp;&nbsp;gpointer&nbsp;&nbsp;&nbsp;user_data)&nbsp;&nbsp;&nbsp;:&nbsp;Run&nbsp;First&nbsp;/&nbsp;Action</span>
</code></div><br>so my func should be <br><br><div class="code_highlight code-box" style="unicode-bidi: embed; direction: ltr;"><code><span style="color: rgb(0, 0, 0);">
void&nbsp;callback_do_test (GtkButton&nbsp;*button,&nbsp;&nbsp;gpointer&nbsp;data&nbsp;)</span>
</code></div> <br>instead of <br><br><div class="code_highlight code-box" style="unicode-bidi: embed; direction: ltr;"><code><span style="color: rgb(0, 0, 0);">
void&nbsp;callback_do_test (GtkWidget*&nbsp;widget,&nbsp;&nbsp;GtkAction&nbsp;*&nbsp;action,&nbsp;gpointer&nbsp;data&nbsp;)</span>
</code></div><br><br>Type-casting is no problem but redundant param will lead to application accessing arbitrary data as you said.<br><br>That&#39;s the reason why the app ran so unstably.<br><br>Hey, don&#39;t know why it ran well on Maemo 3.x. Is it a BUG? Don&#39;t know if 3.x is open now.<br>
<br>Thanks a lot one more time, Markku Vire!<br><br>Have a nice day!<br><br><div class="gmail_quote">On Mon, Feb 25, 2008 at 6:31 PM, Jakov &lt;<a href="mailto:dkymail@gmail.com">dkymail@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Oh my God! I didn&#39;t realize that for a long time! This morning after such a stupid prob, I removed maemo 4.0 and installed Maemo 3.2. Not tested yet, but I think it should have the same params counts as you say. I&#39;ll tell you the result soon. Just a quick msg now to say thank you! Thanks so much, Markku Vire!<div>
<div></div><div class="Wj3C7c"><br>
<br><br><br><div class="gmail_quote">On Mon, Feb 25, 2008 at 6:00 PM, Markku Vire &lt;<a href="mailto:markku.vire@movial.fi" target="_blank">markku.vire@movial.fi</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<br>
Hi,<br>
<br>
The problem behind &quot;changing parameters&quot; is that you are attaching wrong<br>
type of singal handler to signal (i.e. the number/type of parameters<br>
don&#39;t match).<br>
<br>
I didn&#39;t actually try your code, but at least you cannot connect<br>
&quot;callback_do_test&quot; (3 parameters) to &quot;clicked&quot; signal (2 parameters).<br>
This will lead to you application accessing arbitrary data.<br>
<br>
Hope this helps,<br>
<br>
-Markku-<br>
<div><div></div><div><br>
Jakov wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I have a very simple app running on Maemo 4.0 with a textbox and a button.<br>
&gt; As I click on the button, a callback function is invoked to show the content<br>
&gt; of the textbox. I don&#39;t know why the data pointer which is passed to<br>
&gt; callback function is sometimes NULL:<br>
&gt; - if I click on the textbox (a virtual keyboard shown below) and then click<br>
&gt; on the button, the callback function failed due to assertion of data pointer<br>
&gt; - if I just click the button (don&#39;t focus on the textbox), the data pointer<br>
&gt; is not NULL, but the child of it is NULL.<br>
&gt;<br>
&gt; I&#39;m so confused. It didn&#39;t happen on Maemo 3.2 before.<br>
&gt;<br>
&gt; Here&#39;s the code of 4 files (interface.*, callbacks.*) in my project /src/ui,<br>
&gt; I follow the structure of maemopad-2.1<br>
&gt; <a href="http://paste.org/index.php?id=2098" target="_blank">http://paste.org/index.php?id=2098</a><br>
&gt;<br>
&gt; If you&#39;re interested in solving this problem, please help me out. Thanks<br>
&gt; very much!<br>
&gt;<br>
&gt; Best regards,<br>
&gt; Jakov<br>
&gt;<br>
&gt;<br>
&gt;<br>
</div></div>&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; maemo-developers mailing list<br>
&gt; <a href="mailto:maemo-developers@maemo.org" target="_blank">maemo-developers@maemo.org</a><br>
&gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br>
<br>
</blockquote></div><br>
</div></div></blockquote></div><br>