Changeset 1573


Ignore:
Timestamp:
Nov 3, 1999, 7:19:29 PM (26 years ago)
Author:
phaller
Message:

Fix: TrackPopupMenuEx lpPM can be NULL

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r1571 r1573  
    1  /* $Id: changelog,v 1.402 1999-11-03 17:59:26 cbratschi Exp $ */
     1 /* $Id: changelog,v 1.403 1999-11-03 18:19:29 phaller Exp $ */
    22
    33 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
     
    55
    66 99-11-03: Patrick Haller <phaller@gmx.net>
    7         KERNEL32:       Fix:    undocumented behaviour in SearchPathA
     7        - KERNEL32:     Fix:    undocumented behaviour in SearchPathA
    88                                and bugfix in SearchPathW
     9        - USER32:       Fix:    TrackPopupMenuEx lpPM can be NULL
    910
    1011 99-11-02  Markus Montkowski <mmontkowski@gmx.de>
  • trunk/src/user32/winmenu.cpp

    r1499 r1573  
    1 /* $Id: winmenu.cpp,v 1.12 1999-10-28 19:09:17 sandervl Exp $ */
     1/* $Id: winmenu.cpp,v 1.13 1999-11-03 18:16:19 phaller Exp $ */
    22
    33/*
     
    558558
    559559    dprintf(("USER32:  TrackPopupMenuEx, not completely implemented\n"));
    560     if(lpPM->cbSize != 0)
     560
     561    if (lpPM != NULL) // this parameter can be NULL
     562      if(lpPM->cbSize != 0)
    561563        rect = &lpPM->rcExclude;
    562564
Note: See TracChangeset for help on using the changeset viewer.