Commit 48e8d586 authored by Brad Hards's avatar Brad Hards Committed by Rusty Russell

ccan_tokenizer: avoid dead store

obe is always overwritten later.
parent 75955fba
......@@ -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++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment