Browse Source

ccan_tokenizer: avoid dead store

obe is always overwritten later.
Brad Hards 15 years ago
parent
commit
48e8d58600
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/ccan_tokenizer/ccan_tokenizer.c

+ 1 - 1
ccan/ccan_tokenizer/ccan_tokenizer.c

@@ -707,7 +707,7 @@ static int txt_orig_matches(const char *txt, size_t txt_size, const char *orig,
 	
 	do {
 		const char *ob = os; //start of next backslash break
-		const char *obe = os; //end of next backslash break
+		const char *obe; //end of next backslash break
 		size_t size; //amount of text to compare for this round
 		
 		while (ob<oe && *ob!='\\') ob++;