Adding nil to multicast event causes access violation when invoking

Issue #244 resolved
Stefan Glienke repo owner created an issue

When adding nil to a multicast event it will be added to the internal list which causes an AV when invoking the event.

var
  e: Event<TNotifyEvent>;
begin
  e.Add(nil);
  e.Invoke(nil); // <- AV

Comments (2)

  1. Log in to comment