List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekyilmaz Date:March 29 2007 1:33am
Subject:bk commit into 5.1-falcon tree (hakank:1.2512)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1-falcon repository of hakan. When hakan 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@stripped, 2007-03-29 01:33:10+02:00, hakank@stripped +1 -0
  Fix for gcc warning:
    unused variable padding

  storage/falcon/TransformLib/BERDecode.cpp@stripped, 2007-03-29 01:33:04+02:00,
hakank@stripped +2 -2
    Fix for gcc warning:
      unused variable padding

# 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:	hakank
# Host:	lu0008.wdf.sap.corp
# Root:	/home/hakan/work/mysql/mysql-5.1-falcon

--- 1.2/storage/falcon/TransformLib/BERDecode.cpp	2007-03-29 01:33:25 +02:00
+++ 1.3/storage/falcon/TransformLib/BERDecode.cpp	2007-03-29 01:33:25 +02:00
@@ -42,7 +42,8 @@ BERDecode::BERDecode(BERDecode *parent)
 	buffer = NULL;
 	ptr = parent->content;
 	end = ptr + parent->contentLength;
-	int padding = (parent->tagNumber == BIT_STRING) ? *ptr++ : 0;
+	if (parent->tagNumber == BIT_STRING)
+		*ptr++;
 	level = 0;
 }
 
@@ -52,7 +53,6 @@ BERDecode::BERDecode(int length, const U
 	buffer = NULL;
 	ptr = gook;
 	end = ptr + length;
-	int padding = 0;
 	level = 0;
 }
 
Thread
bk commit into 5.1-falcon tree (hakank:1.2512)Hakan Kuecuekyilmaz29 Mar