Page 1 of 1

handle leak in adding Targets

Posted: 02 Nov 2006 01:24
by 360surv
hi there

i'm running a simple switch sequence every 2 seconds and I'm seeing a handle leak in the code. All I'm doing is the following;

Public Sub Connect(ByVal ip As String)
Me.Caption = "VLC Video: " & ip
VideoVLC.playlistClear
strURL = "udp://@" & ip & ":4568"
VideoVLC.addTarget strURL, Null, VLCPlayListAppendAndGo, -666
End Sub

This call happens every 2 seconds. What else do I need to do to release the handles?

joe