Changeset 251
- Timestamp:
- Aug 16, 2005, 5:12:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/avl.c
r248 r251 4 4 $Id$ 5 5 6 archiver.bb2 loader and utilities7 8 Copyright (c) 1993 -98 M. Kimes6 archiver.bb2 search, load, save and date parse 7 8 Copyright (c) 1993, 1998 M. Kimes 9 9 Copyright (c) 2004, 2005 Steven H.Levine 10 10 … … 12 12 13 Aug 05 SHL Beautify with indent 13 13 13 Aug 05 SHL find_type: correct no sig exists bypass logic 14 13 Aug 05 SHL SBoxDlgProc: avoid dereferencing NULL signature 14 15 15 16 ***********************************************************************/ … … 17 18 #define INCL_WIN 18 19 #define INCL_DOS 19 20 20 #include <os2.h> 21 21 22 #include <stdlib.h> 22 23 #include <stdio.h> … … 24 25 #include <share.h> 25 26 #include <ctype.h> 27 26 28 #include "fm3dll.h" 27 29 #include "fm3dlg.h" 28 30 #include "fm3str.h" 29 31 30 BOOL loadedarcs = FALSE;32 BOOL loadedarcs; 31 33 32 34 #pragma alloc_text(MISC9,quick_find_type,find_type) … … 487 489 while (test && test != temp) 488 490 { 489 if (!strcmp(test -> signature, temp -> signature)) 490 goto ContinueHere; 491 if (test -> signature && temp -> signature && 492 !strcmp(test -> signature, temp -> signature)) 493 goto ContinueHere; // Got match 491 494 test = test -> next; 492 495 }
Note:
See TracChangeset
for help on using the changeset viewer.