mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 18:03:56 -04:00
fix uninitialised _frame pointer (thanks cfsworks for pointing it out)
This commit is contained in:
parent
caad44773b
commit
78ed00ef2b
@ -56,7 +56,8 @@ FfmpegAudioCursor(FfmpegAudio *src) :
|
|||||||
_resample_ctx(0),
|
_resample_ctx(0),
|
||||||
#endif
|
#endif
|
||||||
_buffer(0),
|
_buffer(0),
|
||||||
_buffer_alloc(0)
|
_buffer_alloc(0),
|
||||||
|
_frame(0)
|
||||||
{
|
{
|
||||||
if (!_ffvfile.open_vfs(_filename)) {
|
if (!_ffvfile.open_vfs(_filename)) {
|
||||||
cleanup();
|
cleanup();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user