mirror of
https://github.com/rfivet/uemacs.git
synced 2025-02-20 23:17:13 -05:00
Fix CID114555: Unchecked return value.
This commit is contained in:
parent
fa96d9e63e
commit
4feb70b484
9
main.c
9
main.c
@ -332,10 +332,13 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
/* if invoked with no other startup files,
|
/* if invoked with no other startup files,
|
||||||
run the system startup file here */
|
run the system startup file here */
|
||||||
if (startflag == FALSE) {
|
if( startflag == FALSE) {
|
||||||
startup("");
|
if( startup( "") != TRUE)
|
||||||
startflag = TRUE;
|
mloutstr( "Default startup failed!") ;
|
||||||
|
|
||||||
|
startflag = TRUE ;
|
||||||
}
|
}
|
||||||
|
|
||||||
discmd = TRUE; /* P.K. */
|
discmd = TRUE; /* P.K. */
|
||||||
|
|
||||||
/* if there are any files to read, read the first one! */
|
/* if there are any files to read, read the first one! */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user