summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_cloaking.cpp2
-rw-r--r--src/modules/m_opermd5.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index 7bcfb0af2..20d60ebef 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -256,7 +256,7 @@ class ModuleCloaking : public Module
int i = 0;
unsigned char bytes[16];
char hash[MAXBUF];
- strcpy(hash,"");
+ *hash = 0;
MyMD5((char*)bytes,src,strlen(src));
for (i = 0; i < 16; i++)
{
diff --git a/src/modules/m_opermd5.cpp b/src/modules/m_opermd5.cpp
index 44b029082..2c2b51404 100644
--- a/src/modules/m_opermd5.cpp
+++ b/src/modules/m_opermd5.cpp
@@ -245,7 +245,7 @@ void GenHash(const char* src, char* dest)
int i = 0;
unsigned char bytes[16];
char hash[1024];
- strcpy(hash,"");
+ *hash = 0;
MyMD5((char*)bytes,(void*)src,strlen(src));
for (i = 0; i < 16; i++)
{