Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc-1.1
Commits
cac2fe98
Commit
cac2fe98
authored
Mar 02, 2007
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a small memory leak (password)
parent
4dbce889
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/control/telnet.c
modules/control/telnet.c
+3
-1
No files found.
modules/control/telnet.c
View file @
cac2fe98
...
@@ -403,7 +403,7 @@ static void Run( intf_thread_t *p_intf )
...
@@ -403,7 +403,7 @@ static void Run( intf_thread_t *p_intf )
*
cl
->
p_buffer_read
==
'\n'
)
*
cl
->
p_buffer_read
==
'\n'
)
{
{
*
cl
->
p_buffer_read
=
'\0'
;
*
cl
->
p_buffer_read
=
'\0'
;
if
(
strcmp
(
psz_password
,
cl
->
buffer_read
)
==
0
)
if
(
!
psz_password
||
!
strcmp
(
psz_password
,
cl
->
buffer_read
)
)
{
{
Write_message
(
cl
,
NULL
,
"
\xff\xfc\x01\r\n
Welcome, "
Write_message
(
cl
,
NULL
,
"
\xff\xfc\x01\r\n
Welcome, "
"Master
\r\n
> "
,
WRITE_MODE_CMD
);
"Master
\r\n
> "
,
WRITE_MODE_CMD
);
...
@@ -460,6 +460,8 @@ static void Run( intf_thread_t *p_intf )
...
@@ -460,6 +460,8 @@ static void Run( intf_thread_t *p_intf )
}
}
}
}
}
}
if
(
psz_password
)
free
(
psz_password
);
}
}
static
void
Write_message
(
telnet_client_t
*
client
,
vlm_message_t
*
message
,
static
void
Write_message
(
telnet_client_t
*
client
,
vlm_message_t
*
message
,
...
...
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