Changeset 2357ced8cd030854a8215ed03da6cf316d201b1f
- Timestamp:
- 04/09/08 12:41:50
(5 months ago)
- Author:
- Jean-Paul Saman <jean-paul.saman@m2x.nl>
- git-committer:
- Jean-Paul Saman <jean-paul.saman@m2x.nl> 1207737710 +0200
- git-parent:
[a471fc70851b8a35f9945f6666bb2175d35ed9f8]
- git-author:
- Jean-Paul Saman <jean-paul.saman@m2x.nl> 1207737710 +0200
- Message:
Don't leak memory.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0377412 |
r2357ced |
|
| 369 | 369 | break; |
|---|
| 370 | 370 | } |
|---|
| 371 | | (*pp_region)->psz_text = strdup( p_overlay->data.p_text ); |
|---|
| 372 | | memcpy( (*pp_region)->p_style, &p_overlay->fontstyle, sizeof(text_style_t) ); |
|---|
| | 371 | p_filter->p_libvlc->pf_memcpy( (*pp_region)->p_style, |
|---|
| | 372 | &p_overlay->fontstyle, |
|---|
| | 373 | sizeof(struct text_style_t) ); |
|---|
| 373 | 374 | } |
|---|
| 374 | 375 | else |
|---|