Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
48e8d586
Commit
48e8d586
authored
Mar 08, 2011
by
Brad Hards
Committed by
Rusty Russell
Mar 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ccan_tokenizer: avoid dead store
obe is always overwritten later.
parent
75955fba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ccan/ccan_tokenizer/ccan_tokenizer.c
ccan/ccan_tokenizer/ccan_tokenizer.c
+1
-1
No files found.
ccan/ccan_tokenizer/ccan_tokenizer.c
View file @
48e8d586
...
...
@@ -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
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment