Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangjie
OpenXG-RAN
Commits
1a93c759
Commit
1a93c759
authored
Mar 26, 2021
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix cppcheck error
parent
b3515527
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
common/utils/telnetsrv/telnetsrv.c
common/utils/telnetsrv/telnetsrv.c
+5
-7
No files found.
common/utils/telnetsrv/telnetsrv.c
View file @
1a93c759
...
...
@@ -461,12 +461,12 @@ int process_command(char *buf) {
int
i
,
j
,
k
;
char
modulename
[
TELNET_CMD_MAXSIZE
];
char
cmd
[
TELNET_CMD_MAXSIZE
];
char
cmdb
[
TELNET_MAX_MSGLENGTH
]
;
char
*
cmdb
=
NULL
;
char
*
bufbck
;
int
rt
;
memset
(
modulename
,
0
,
sizeof
(
modulename
));
memset
(
cmd
,
0
,
sizeof
(
cmd
));
memset
(
cmdb
,
0
,
sizeof
(
cmdb
));
if
(
strncasecmp
(
buf
,
"ex"
,
2
)
==
0
)
return
CMDSTATUS_EXIT
;
...
...
@@ -490,12 +490,10 @@ int process_command(char *buf) {
return
CMDSTATUS_FOUND
;
}
memset
(
modulename
,
0
,
sizeof
(
modulename
));
memset
(
cmd
,
0
,
sizeof
(
cmd
));
memset
(
cmdb
,
0
,
sizeof
(
cmdb
));
bufbck
=
strdup
(
buf
);
rt
=
CMDSTATUS_NOTFOUND
;
j
=
sscanf
(
buf
,
"%19s %19s %
[^
\t\n
]"
,
modulename
,
cmd
,
cmdb
);
j
=
sscanf
(
buf
,
"%19s %19s %
m[^
\t\n
]"
,
modulename
,
cmd
,
&
cmdb
);
if
(
telnetparams
.
telnetdbg
>
0
)
printf
(
"process_command: %i words, module=%s cmd=%s, parameters= %s
\n
"
,
j
,
modulename
,
cmd
,
cmdb
);
...
...
@@ -562,7 +560,7 @@ int process_command(char *buf) {
rt
=
CMDSTATUS_FOUND
;
}
/* loop */
}
/* for i */
free
(
cmdb
);
free
(
bufbck
);
return
rt
;
}
...
...
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