mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-24 17:48:20 +00:00
Update base repositories to use int as a base to avoid atoi overflow
This commit is contained in:
@@ -35,12 +35,12 @@
|
||||
class BaseTraderRepository {
|
||||
public:
|
||||
struct Trader {
|
||||
int char_id;
|
||||
int item_id;
|
||||
int serialnumber;
|
||||
int charges;
|
||||
int item_cost;
|
||||
int8 slot_id;
|
||||
int char_id;
|
||||
int item_id;
|
||||
int serialnumber;
|
||||
int charges;
|
||||
int item_cost;
|
||||
int slot_id;
|
||||
};
|
||||
|
||||
static std::string PrimaryKey()
|
||||
|
||||
Reference in New Issue
Block a user