List:Commits« Previous MessageNext Message »
From:tomas Date:March 2 2007 2:56am
Subject:bk commit into 5.0 tree (tomas:1.2392) BUG#26720
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of tomas. When tomas does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2392 07/03/02 08:56:22 tomas@stripped +1 -0
  Bug #26720 Infinite loop on unknown signal in logging function
  - terminate printing

  ndb/src/common/debugger/signaldata/PackedSignal.cpp
    1.3 07/03/02 08:56:14 tomas@stripped +2 -0
    Bug #26720 Infinite loop on unknown signal in logging function
    - terminate printing

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	tomas
# Host:	poseidon.mysql.com
# Root:	/home/tomas/mysql-5.0-telco-gca

--- 1.2/ndb/src/common/debugger/signaldata/PackedSignal.cpp	2006-12-24 02:04:12 +07:00
+++ 1.3/ndb/src/common/debugger/signaldata/PackedSignal.cpp	2007-03-02 08:56:14 +07:00
@@ -96,6 +96,8 @@ printPACKED_SIGNAL(FILE * output, const 
     }
     default:
       fprintf(output, "Unknown signal type\n");
+      i = len; // terminate printing
+      break;
     }
   }//for
   fprintf(output, "--------- End Packed Signals ----------\n");
Thread
bk commit into 5.0 tree (tomas:1.2392) BUG#26720tomas2 Mar