Source
...
Target
Commits (1)
  • Robert Sprowson's avatar
    Fix for NULL pointer dereference · bb0e7769
    Robert Sprowson authored
    Looks like a typo, since there's no point checking search!=NULL then checking again 2 lines later, the intent was probably to check search->msg!=NULL.
    Binary rebuilt with cc 5.71 in Disc environment.
    
    Version 1.12. Tagged as 'Messages-1_12'
    bb0e7769
No preview for this file type
......@@ -252,7 +252,7 @@ char *progname=NULL;
{
char clean[1024];
if (search != NULL)
if (search->msg != NULL)
{
int i,p=0,l;
l = strlen(search->msg);
......
......@@ -11,13 +11,13 @@
GBLS Module_HelpVersion
GBLS Module_ComponentName
GBLS Module_ComponentPath
Module_MajorVersion SETS "1.11"
Module_Version SETA 111
Module_MajorVersion SETS "1.12"
Module_Version SETA 112
Module_MinorVersion SETS ""
Module_Date SETS "18 Nov 2013"
Module_ApplicationDate SETS "18-Nov-13"
Module_Date SETS "24 Oct 2015"
Module_ApplicationDate SETS "24-Oct-15"
Module_ComponentName SETS "Messages"
Module_ComponentPath SETS "castle/RiscOS/Sources/Internat/Messages"
Module_FullVersion SETS "1.11"
Module_HelpVersion SETS "1.11 (18 Nov 2013)"
Module_FullVersion SETS "1.12"
Module_HelpVersion SETS "1.12 (24 Oct 2015)"
END
/* (1.11)
/* (1.12)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 1.11
#define Module_MajorVersion_CMHG 1.12
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 18 Nov 2013
#define Module_Date_CMHG 24 Oct 2015
#define Module_MajorVersion "1.11"
#define Module_Version 111
#define Module_MajorVersion "1.12"
#define Module_Version 112
#define Module_MinorVersion ""
#define Module_Date "18 Nov 2013"
#define Module_Date "24 Oct 2015"
#define Module_ApplicationDate "18-Nov-13"
#define Module_ApplicationDate "24-Oct-15"
#define Module_ComponentName "Messages"
#define Module_ComponentPath "castle/RiscOS/Sources/Internat/Messages"
#define Module_FullVersion "1.11"
#define Module_HelpVersion "1.11 (18 Nov 2013)"
#define Module_LibraryVersionInfo "1:11"
#define Module_FullVersion "1.12"
#define Module_HelpVersion "1.12 (24 Oct 2015)"
#define Module_LibraryVersionInfo "1:12"