diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/helperfuncs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 7c0d37196..fb5b88449 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -1310,9 +1310,10 @@ char* chanmodes(chanrec *chan, bool showkey) strlcat(sparam,foo,MAXBUF); } - for (int n = 0; n < 190; n++) + /* This was still iterating up to 190, chanrec::custom_modes is only 64 elements -- Om */ + for(int n = 0; n < 64; n++) { - if (chan->custom_modes[n]) + if(chan->custom_modes[n]) { *offset++ = n+65; std::string extparam = chan->GetModeParameter(n+65); @@ -1796,4 +1797,3 @@ bool charremove(char* mp, char remove) return shift_down; } - |