mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
031748d9c8
Seemingly, when removing an argument from argv, and thus inserting a null pointer to shorten the array, causes an assertion because the null pointer is not a valid heap pointer (sic!) Fixes bug #10440
44 lines
814 B
C++
44 lines
814 B
C++
/**
|
|
* \file main.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author Jean Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "LyX.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/os.h"
|
|
|
|
#include <iostream>
|
|
#ifdef HAVE_IOS
|
|
#include <ios>
|
|
#endif
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
#ifdef HAVE_IOS
|
|
ios_base::sync_with_stdio(false);
|
|
#endif
|
|
|
|
// To avoid ordering of global object problems with some
|
|
// stdlibs we do the initialization here, but still as
|
|
// early as possible.
|
|
lyx::lyxerr.setStream(cerr);
|
|
|
|
lyx::support::os::init(argc, &argv);
|
|
|
|
lyx::LyX the_lyx_instance;
|
|
|
|
return the_lyx_instance.exec(argc, argv);
|
|
}
|