summaryrefslogtreecommitdiff
path: root/include/asterisk/stream.h
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2017-05-02 18:05:01 -0500
committerRichard Mudgett <rmudgett@digium.com>2017-05-05 18:49:19 -0500
commit56c5c51076ac75e25130083d1358160cd27b0b8f (patch)
tree3d271882e9fd1a0122ab1a1dafee0bfd79a8a370 /include/asterisk/stream.h
parent924628812b68e01cf7506b44b292e6057716f77a (diff)
stream: ast_stream_clone() cannot copy the opaque user data.
ast_stream_clone() cannot copy the opaque user data stored on a stream. We don't know how to clone the data so it isn't copied into the clone. Change-Id: Ia51321bf38ecbfdcc53787ca77ea5fd2cabdf367
Diffstat (limited to 'include/asterisk/stream.h')
-rw-r--r--include/asterisk/stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/stream.h b/include/asterisk/stream.h
index 1bb34b72a..821ecec03 100644
--- a/include/asterisk/stream.h
+++ b/include/asterisk/stream.h
@@ -126,7 +126,7 @@ void ast_stream_free(struct ast_stream *stream);
* \retval NULL failure
*
* \note Opaque data pointers set with ast_stream_set_data() are not part
- * of the deep clone. The pointers are simply copied.
+ * of the deep clone. We have no way to clone the data.
*
* \since 15
*/