diff options
| author | Adam <Adam@anope.org> | 2013-12-01 21:16:50 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2013-12-01 21:16:50 -0500 |
| commit | b5966cf99e2b1ffd578e0aa371803cb17013956f (patch) | |
| tree | e8f678b15f30f1aa9ce6b3768218b619bac55170 /include | |
| parent | faab2c67937cf23ef87dfa0b8d0224bfabd61425 (diff) | |
Fix crash from loading exceptions with db_old and then unloading db_old
Diffstat (limited to 'include')
| -rw-r--r-- | include/modules/os_session.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/modules/os_session.h b/include/modules/os_session.h index 31f02cf9d..65f1c6f75 100644 --- a/include/modules/os_session.h +++ b/include/modules/os_session.h @@ -32,6 +32,8 @@ class SessionService : public Service SessionService(Module *m) : Service(m, "SessionService", "session") { } + virtual Exception *CreateException() = 0; + virtual void AddException(Exception *e) = 0; virtual void DelException(Exception *e) = 0; |
