diff options
| author | Adam <Adam@anope.org> | 2014-02-16 18:27:46 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2014-02-16 18:28:39 -0500 |
| commit | 959fee59377edc4eaf285d8e72d3c2c41e9fe3ab (patch) | |
| tree | d1295deffb7bc89380f5c6556255262705de8186 /modules/extra | |
| parent | 3854a5570f832265535bb43e8e93cdae23fe0514 (diff) | |
Fix Windows build
Diffstat (limited to 'modules/extra')
| -rw-r--r-- | modules/extra/m_sasl_dh-aes.cpp | 2 | ||||
| -rw-r--r-- | modules/extra/m_sasl_dh-blowfish.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/m_sasl_dh-aes.cpp b/modules/extra/m_sasl_dh-aes.cpp index c61430a62..0b720b9a7 100644 --- a/modules/extra/m_sasl_dh-aes.cpp +++ b/modules/extra/m_sasl_dh-aes.cpp @@ -17,7 +17,7 @@ class DHAES : public Mechanism BN_free(key); sasl->Fail(sess); - return delete sess; + delete sess; } public: diff --git a/modules/extra/m_sasl_dh-blowfish.cpp b/modules/extra/m_sasl_dh-blowfish.cpp index a31d4727b..c8ea020d5 100644 --- a/modules/extra/m_sasl_dh-blowfish.cpp +++ b/modules/extra/m_sasl_dh-blowfish.cpp @@ -17,7 +17,7 @@ class DHBS : public Mechanism BN_free(key); sasl->Fail(sess); - return delete sess; + delete sess; } public: |
