Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e1e8194 authored by Leonardo Bras's avatar Leonardo Bras Committed by Masahiro Yamada
Browse files

ASN.1: Remove unnecessary shadowed local variable



Remove an unnecessary shadowed local variable (start).
It was used only once, with the same value it was started before
the if block.

Signed-off-by: default avatarLeonardo Bras <leobras.c@gmail.com>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 7d0ea252
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -413,7 +413,7 @@ static void tokenise(char *buffer, char *end)

			/* Handle string tokens */
			if (isalpha(*p)) {
				const char **dir, *start = p;
				const char **dir;

				/* Can be a directive, type name or element
				 * name.  Find the end of the name.