/hg/icedtea-web: Fix missing return value in non-void function

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Tue Jul 22 15:27:30 UTC 2014


changeset 65fef87606cd in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=65fef87606cd
author: Fridrich Strba <fridrich.strba at suse.com>
date: Tue Jul 22 11:20:03 2014 -0400

	Fix missing return value in non-void function

	2014-07-22  Fridrich Strba  <fridrich.strba at suse.com>

	    * plugin/icedteanp/IcedTeaPluginUtils.cc (flush_pre_init_messages):
	    Return NULL explicitly.


diffstat:

 ChangeLog                              |   5 +++++
 plugin/icedteanp/IcedTeaPluginUtils.cc |  28 ++++++++++++++--------------
 2 files changed, 19 insertions(+), 14 deletions(-)

diffs (55 lines):

diff -r a2d1b4b606bf -r 65fef87606cd ChangeLog
--- a/ChangeLog	Mon Jul 14 10:06:27 2014 -0400
+++ b/ChangeLog	Tue Jul 22 11:20:03 2014 -0400
@@ -1,3 +1,8 @@
+2014-07-22  Fridrich Strba  <fridrich.strba at suse.com>
+
+	* plugin/icedteanp/IcedTeaPluginUtils.cc (flush_pre_init_messages):
+	Return NULL explicitly.
+
 2014-07-14  Andrew Azores  <aazores at redhat.com>
 
 	PolicyEditor mnemonics and accelerators overhaul
diff -r a2d1b4b606bf -r 65fef87606cd plugin/icedteanp/IcedTeaPluginUtils.cc
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Mon Jul 14 10:06:27 2014 -0400
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 22 11:20:03 2014 -0400
@@ -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