View Issue Details

IDProjectCategoryView StatusLast Update
0005555JEDI VCL00 JVCL Componentspublic2011-09-21 14:10
Reporterim0rtalityAssigned Toobones 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.40 
Target VersionFixed in Version3.45 
Summary0005555: TJvAviCapture.EnumDrivers does not clear list before adding new entries
DescriptionSummary says all.


possible fix:

JvAviCapture.pas

procedure TJvAVICapture.EnumDrivers;
var
  I: Integer;
  DeviceName: array [0..MAX_PATH] of Char;
  DeviceVersion: array [0..MAX_PATH] of Char;
begin
  // no more than 10 drivers in the system (cf Win32 API)
  Drivers.Clear();
  for I := 0 to 9 do
    if capGetDriverDescription(I, DeviceName, SizeOf(DeviceName), DeviceVersion, SizeOf(DeviceVersion)) then
      Drivers.Add(DeviceName);
end;


TagsNo tags attached.

Activities

obones

2011-06-08 15:37

administrator   ~0018680

This is now fixed in SVN

Issue History

Date Modified Username Field Change
2011-04-19 19:03 im0rtality New Issue
2011-06-07 17:54 obones Status new => acknowledged
2011-06-08 15:37 obones Note Added: 0018680
2011-06-08 15:37 obones Status acknowledged => resolved
2011-06-08 15:37 obones Fixed in Version => Daily / SVN
2011-06-08 15:37 obones Resolution open => fixed
2011-06-08 15:37 obones Assigned To => obones
2011-09-21 14:10 obones Fixed in Version Daily / SVN => 3.45