Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
54c23b66
Commit
54c23b66
authored
Mar 15, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless test before a delete.
parent
10b3d6f1
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
19 deletions
+18
-19
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-1
modules/gui/beos/VideoOutput.cpp
modules/gui/beos/VideoOutput.cpp
+6
-6
modules/gui/qt4/dialogs/interaction.cpp
modules/gui/qt4/dialogs/interaction.cpp
+2
-2
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+1
-1
modules/gui/wince/interface.cpp
modules/gui/wince/interface.cpp
+2
-2
modules/gui/wince/wince.cpp
modules/gui/wince/wince.cpp
+1
-1
modules/gui/wxwidgets/dialogs/messages.cpp
modules/gui/wxwidgets/dialogs/messages.cpp
+1
-2
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+3
-3
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+1
-1
No files found.
modules/demux/live555.cpp
View file @
54c23b66
...
...
@@ -530,7 +530,7 @@ describe:
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
&
authenticator
);
if
(
psz_options
)
delete
[]
psz_options
;
delete
[]
psz_options
;
p_sdp
=
p_sys
->
rtsp
->
describeURL
(
psz_url
,
&
authenticator
,
var_GetBool
(
p_demux
,
"rtsp-kasenna"
)
);
...
...
modules/gui/beos/VideoOutput.cpp
View file @
54c23b66
...
...
@@ -777,20 +777,20 @@ VideoWindow::_AllocateBuffers(int width, int height, int* mode)
{
msg_Dbg
(
p_vout
,
"using single-buffered overlay"
);
bitmap_count
=
2
;
if
(
bitmap
[
2
]
)
{
delete
bitmap
[
2
];
bitmap
[
2
]
=
NULL
;
}
delete
bitmap
[
2
];
bitmap
[
2
]
=
NULL
;
}
}
else
{
msg_Dbg
(
p_vout
,
"using simple overlay"
);
bitmap_count
=
1
;
if
(
bitmap
[
1
]
)
{
delete
bitmap
[
1
];
bitmap
[
1
]
=
NULL
;
}
delete
bitmap
[
1
];
bitmap
[
1
]
=
NULL
;
}
break
;
}
else
{
if
(
bitmap
[
0
]
)
{
delete
bitmap
[
0
];
bitmap
[
0
]
=
NULL
;
}
delete
bitmap
[
0
];
bitmap
[
0
]
=
NULL
;
}
}
...
...
@@ -829,9 +829,9 @@ VideoWindow::_AllocateBuffers(int width, int height, int* mode)
void
VideoWindow
::
_FreeBuffers
()
{
if
(
bitmap
[
0
]
)
{
delete
bitmap
[
0
];
bitmap
[
0
]
=
NULL
;
}
if
(
bitmap
[
1
]
)
{
delete
bitmap
[
1
];
bitmap
[
1
]
=
NULL
;
}
if
(
bitmap
[
2
]
)
{
delete
bitmap
[
2
];
bitmap
[
2
]
=
NULL
;
}
delete
bitmap
[
0
];
bitmap
[
0
]
=
NULL
;
delete
bitmap
[
1
];
bitmap
[
1
]
=
NULL
;
delete
bitmap
[
2
];
bitmap
[
2
]
=
NULL
;
fInitStatus
=
B_ERROR
;
}
...
...
modules/gui/qt4/dialogs/interaction.cpp
View file @
54c23b66
...
...
@@ -197,8 +197,8 @@ void InteractionDialog::update()
InteractionDialog
::~
InteractionDialog
()
{
//
if( panel )
delete panel;
if
(
dialog
)
delete
dialog
;
// delete panel;
delete
dialog
;
}
void
InteractionDialog
::
defaultB
()
...
...
modules/gui/qt4/qt4.cpp
View file @
54c23b66
...
...
@@ -384,7 +384,7 @@ static void Init( intf_thread_t *p_intf )
/* Destroy first the main interface because it is connected to some slots
in the MainInputManager */
if
(
p_intf
->
p_sys
->
p_mi
)
delete
p_intf
->
p_sys
->
p_mi
;
delete
p_intf
->
p_sys
->
p_mi
;
/* Destroy then other windows, because some are connected to some slots
in the MainInputManager */
...
...
modules/gui/wince/interface.cpp
View file @
54c23b66
...
...
@@ -116,8 +116,8 @@ Interface::Interface( intf_thread_t *p_intf, CBaseWindow *p_parent,
Interface
::~
Interface
()
{
if
(
timer
)
delete
timer
;
if
(
video
)
delete
video
;
delete
timer
;
delete
video
;
}
BOOL
Interface
::
InitInstance
()
...
...
modules/gui/wince/wince.cpp
View file @
54c23b66
...
...
@@ -273,7 +273,7 @@ static void MainLoop( intf_thread_t *p_intf )
}
end:
if
(
intf
)
delete
intf
;
delete
intf
;
#ifndef UNDER_CE
/* Uninitialize OLE/COM */
...
...
modules/gui/wxwidgets/dialogs/messages.cpp
View file @
54c23b66
...
...
@@ -102,8 +102,7 @@ Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
Messages
::~
Messages
()
{
/* Clean up */
if
(
save_log_dialog
)
delete
save_log_dialog
;
delete
save_log_dialog
;
delete
info_attr
;
delete
err_attr
;
delete
warn_attr
;
...
...
modules/gui/wxwidgets/interface.cpp
View file @
54c23b66
...
...
@@ -512,19 +512,19 @@ Interface::~Interface()
PopEventHandler
(
true
);
if
(
video_window
)
delete
video_window
;
delete
video_window
;
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
if
(
p_systray
)
delete
p_systray
;
delete
p_systray
;
#endif
#endif
p_intf
->
b_interaction
=
VLC_FALSE
;
var_DelCallback
(
p_intf
,
"interaction"
,
InteractCallback
,
this
);
if
(
p_intf
->
p_sys
->
p_wxwindow
)
delete
p_intf
->
p_sys
->
p_wxwindow
;
delete
p_intf
->
p_sys
->
p_wxwindow
;
/* Clean up */
...
...
modules/gui/wxwidgets/wxwidgets.cpp
View file @
54c23b66
...
...
@@ -418,7 +418,7 @@ int Instance::OnExit()
if
(
p_intf
->
pf_show_dialog
)
{
/* We need to manually clean up the dialogs class */
if
(
p_intf
->
p_sys
->
p_wxwindow
)
delete
p_intf
->
p_sys
->
p_wxwindow
;
delete
p_intf
->
p_sys
->
p_wxwindow
;
}
#if (wxCHECK_VERSION(2,5,0))
...
...
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