Skip to content
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.

Fixing crash for very large USER_MOTION_SIZE values #389

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion gpssim.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ double ant_pat_db[37] = {

int allocatedSat[MAX_SAT];

double xyz[USER_MOTION_SIZE][3];

/*! \brief Subtract two vectors of double
* \param[out] y Result of subtraction
* \param[in] x1 Minuend of subtraction
Expand Down Expand Up @@ -1743,7 +1745,7 @@ int main(int argc, char *argv[])
int iumd;
int numd;
char umfile[MAX_CHAR];
double xyz[USER_MOTION_SIZE][3];


int staticLocationMode = FALSE;
int nmeaGGA = FALSE;
Expand Down