Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
8dde33d1
Commit
8dde33d1
authored
8 years ago
by
zuul
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "tcptls.c: Add some missing allocation failure checks."
parents
10ef644d
0b427f9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main/tcptls.c
+14
-10
14 additions, 10 deletions
main/tcptls.c
with
14 additions
and
10 deletions
main/tcptls.c
+
14
−
10
View file @
8dde33d1
...
...
@@ -240,20 +240,23 @@ void *ast_tcptls_server_root(void *data)
}
tcptls_session
=
ao2_alloc
(
sizeof
(
*
tcptls_session
),
session_instance_destructor
);
if
(
!
tcptls_session
)
{
ast_log
(
LOG_WARNING
,
"No memory for new session: %s
\n
"
,
strerror
(
errno
));
if
(
close
(
fd
))
{
ast_log
(
LOG_ERROR
,
"close() failed: %s
\n
"
,
strerror
(
errno
));
}
close
(
fd
);
continue
;
}
tcptls_session
->
overflow_buf
=
ast_str_create
(
128
);
if
(
!
tcptls_session
->
overflow_buf
)
{
ao2_ref
(
tcptls_session
,
-
1
);
close
(
fd
);
continue
;
}
flags
=
fcntl
(
fd
,
F_GETFL
);
fcntl
(
fd
,
F_SETFL
,
flags
&
~
O_NONBLOCK
);
tcptls_session
->
stream
=
ast_iostream_from_fd
(
&
fd
);
if
(
!
tcptls_session
->
stream
)
{
ast_log
(
LOG_WARNING
,
"No memory for new session iostream
\n
"
);
ao2_ref
(
tcptls_session
,
-
1
);
close
(
fd
);
continue
;
}
...
...
@@ -265,7 +268,6 @@ void *ast_tcptls_server_root(void *data)
/* This thread is now the only place that controls the single ref to tcptls_session */
if
(
ast_pthread_create_detached_background
(
&
launched
,
NULL
,
handle_tcptls_connection
,
tcptls_session
))
{
ast_log
(
LOG_ERROR
,
"Unable to launch helper thread: %s
\n
"
,
strerror
(
errno
));
ast_tcptls_close_session_file
(
tcptls_session
);
ao2_ref
(
tcptls_session
,
-
1
);
}
}
...
...
@@ -561,11 +563,15 @@ struct ast_tcptls_session_instance *ast_tcptls_client_create(struct ast_tcptls_s
}
}
if
(
!
(
tcptls_session
=
ao2_alloc
(
sizeof
(
*
tcptls_session
),
session_instance_destructor
)))
{
tcptls_session
=
ao2_alloc
(
sizeof
(
*
tcptls_session
),
session_instance_destructor
);
if
(
!
tcptls_session
)
{
goto
error
;
}
tcptls_session
->
overflow_buf
=
ast_str_create
(
128
);
if
(
!
tcptls_session
->
overflow_buf
)
{
goto
error
;
}
tcptls_session
->
client
=
1
;
tcptls_session
->
stream
=
ast_iostream_from_fd
(
&
fd
);
if
(
!
tcptls_session
->
stream
)
{
...
...
@@ -584,9 +590,7 @@ struct ast_tcptls_session_instance *ast_tcptls_client_create(struct ast_tcptls_s
error:
close
(
desc
->
accept_fd
);
desc
->
accept_fd
=
-
1
;
if
(
tcptls_session
)
{
ao2_ref
(
tcptls_session
,
-
1
);
}
ao2_cleanup
(
tcptls_session
);
return
NULL
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment