Little tiny patch for icedtea-web

Jiri Vanek jvanek at redhat.com
Tue Jul 29 07:53:44 UTC 2014


Hi!

Patch looks ok. If you will send me me changelog I will push for you.
If you will not I will push anyway in some time :)

I will push this both to head and 1.5, unless you have different requirements.

J.
On 07/22/2014 03:22 PM, Fridrich Strba wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hello, good people,
>
> A little tiny patch for icedtea-web fixing a lack of return in
> non-void function. I also re-formated that function so that it has the
> indentation of the surrounding. If that is a problem, I can send a
> one-liner too.
>
> Cheers
>
> Fridrich Strba
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.22 (GNU/Linux)
>
> iEYEARECAAYFAlPOZagACgkQu9a1imXPdA+f5ACcDpCT27cdEIPj5mlBIxi6Nlzk
> Sv8An11viqrXgJOt/v7865ZtLl5ufWiw
> =mwM0
> -----END PGP SIGNATURE-----
>
>
> no-retur-in-non-void-function.patch
>
>
> --- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Mon Jul 14 10:06:27 2014 -0400
> +++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 22 14:33:19 2014 +0200
> @@ -60,25 +60,25 @@
>   static std::vector< PluginThreadCall* >* pendingPluginThreadRequests = new std::vector< PluginThreadCall* >();
>
>   void*flush_pre_init_messages(void*  data) {
> -while (true){
> -  struct timespec ts;
> +  while (true){
> +    struct timespec ts;
>       ts.tv_sec = 1;
>       ts.tv_nsec = 0;
> -  nanosleep(&ts ,0);
> -  if (jvm_up) {
> -    while (!pre_jvm_message.empty()) {
> -      pthread_mutex_lock(&debug_pipe_lock);
> -      std::string  message = pre_jvm_message.front();
> -      pre_jvm_message.pop();
> -      pthread_mutex_unlock(&debug_pipe_lock);
> -      plugin_send_message_to_appletviewer_console(message.c_str());
> -
> +    nanosleep(&ts ,0);
> +    if (jvm_up) {
> +      while (!pre_jvm_message.empty()) {
> +        pthread_mutex_lock(&debug_pipe_lock);
> +        std::string  message = pre_jvm_message.front();
> +        pre_jvm_message.pop();
> +        pthread_mutex_unlock(&debug_pipe_lock);
> +        plugin_send_message_to_appletviewer_console(message.c_str());
> +      }
> +      flush_plugin_send_message_to_appletviewer_console();
>       }
> -    flush_plugin_send_message_to_appletviewer_console();
>     }
> -
> +  return NULL;
>   }
> -}
> +
>   void push_pre_init_messages(char * ldm){
>     pthread_mutex_lock(&debug_pipe_lock);
>     pre_jvm_message.push(std::string(ldm));
>



More information about the distro-pkg-dev mailing list