diff options
author | Adam <Adam@anope.org> | 2013-02-14 20:57:40 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-14 20:57:40 -0500 |
commit | 391f2822c8f6da7d6ffa8114817a8baf2aa265d5 (patch) | |
tree | b8c9c566481fe13083d12f0d750ba30ca3e87456 /modules/database/db_sql.cpp | |
parent | f0875c5d85e0a6c1d878aed01673c0d909a8d488 (diff) |
This Serialize::Destroy method isn't actually needed anymore. Fixes weirdness from a few Serializable items we had on the stack. Added a comment about why operator< in Reference fails.
Diffstat (limited to 'modules/database/db_sql.cpp')
-rw-r--r-- | modules/database/db_sql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/db_sql.cpp b/modules/database/db_sql.cpp index 170f7a5c8..74166d6dc 100644 --- a/modules/database/db_sql.cpp +++ b/modules/database/db_sql.cpp @@ -185,7 +185,7 @@ class DBSQL : public Module, public Pipe void OnSerializableDestruct(Serializable *obj) anope_override { Serialize::Type *s_type = obj->GetSerializableType(); - if (s_type) + if (s_type && obj->id > 0) this->RunBackground("DELETE FROM `" + this->prefix + s_type->GetName() + "` WHERE `id` = " + stringify(obj->id)); this->updated_items.erase(obj); } |