Menu

#1898 typo? in tkMacOSXNotify causes crash

closed-fixed
5
2005-04-28
2005-04-27
Anonymous
No

Current CVS about line 804 of tkMacOSXNotify.c:

typo> if (timePtr == NULL) {
waitTime = kEventDurationForever;
} else {
waitTime = myTimePtr->sec * kEventDurationSecond
+ myTimePtr->usec * kEventDurationMicrosecond;
}

Should be:

if (myTimePtr == NULL) {

Discussion

  • Donal K. Fellows

    • labels: --> 66. Aqua Window Operations
    • assigned_to: nobody --> dkf
    • status: open --> closed-fixed
     
  • Daniel A. Steffen

    Logged In: YES
    user_id=90580

    Donal, thanks for fixing the typo.
    I have applied your cleanup changes to tclUnixNotfy.c as well, as they
    had bruoght the two files out of sync again...