Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-35283

IEnumConnectionPoints->Next method crashes of optional pointer to a number of fetched items in not provided

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P4: Low
    • 5.2.1
    • 5.1.1
    • ActiveX Support
    • None
    • Win32, VS2012
    • qtactiveqt: 0d29579baffd4f31a3ec39590117f4fee821694d (5.2.1, stable, 9.12.2013) Qt: 4: 3bef845f4623e0edcd52ddcffee3612f4f7f6779 (20.12.2013, 4.8.6)

    Description

      The IEnumConnectionPoints->Next method crashes if optional pointer to a number of fetched items in not provided. According to the specification if only one element is requested, the third parameter of the Next method is optional.

      //
      // crash in the next method
      // The third parameter of the Next method is mandatory only if more than one connection point is requested
      //
      void crash5( IQTCrashPtr qtObject )
      {
      	IEnumConnectionPointsPtr connectionPointEnum;
      	IConnectionPointContainerPtr( qtObject )->EnumConnectionPoints( &connectionPointEnum );
      
      	IConnectionPointPtr connectionPoint;
      	while( connectionPointEnum->Next( 1, &connectionPoint, 0 ) == S_OK ) // crash here. 
      	{
      	}
      }
      

      Example project demonstrating the error is attached

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            kleint Friedemann Kleint
            sbk Sergey Korepanov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes