Skip to content
Snippets Groups Projects
Commit 593134ff authored by rswindell's avatar rswindell
Browse files

Fixed a segfault when starting sbbs event thread:

Missed one compiled AR variable conversion from pointer to array.
parent a086aab5
No related branches found
No related tags found
No related merge requests found
......@@ -550,7 +550,7 @@ typedef struct
uint16_t max_qwkmsgage; /* Maximum age (in days) of QWK messages to be imported */
uint16_t max_spamage; /* Maximum age (in days) of SPAM-tagged messages */
char preqwk_arstr[LEN_ARSTR+1]; /* pre pack QWK */
uchar* preqwk_ar;
uchar preqwk_ar[LEN_ARSTR+1];
uint16_t cdt_min_value; /* Minutes per 100k credits */
uint32_t cdt_per_dollar; /* Credits per dollar */
uint16_t cdt_up_pct; /* Pct of credits credited on uploads */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment