We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9324acc commit 678ed50Copy full SHA for 678ed50
src/clutils/dirobj.cc
@@ -118,7 +118,6 @@ const char* DirObj::RealPath (const char* path) {
118
119
boolean DirObj::LoadDirectory (const char* name) {
120
char buf[MAXPATHLEN+2];
121
- const char* path = buf;
122
123
strcpy(buf, ValidDirectories(RealPath(name)));
124
return Reset(buf);
src/clutils/gennodearray.cc
@@ -71,7 +71,6 @@ GenNodeArray::Check (int index)
71
GenericNode** newbuf;
72
73
if (index >= _bufsize) {
74
- int oldBufSize = _bufsize;
75
_bufsize = (index+1) * 2;
76
newbuf = new GenericNode*[_bufsize];
77
0 commit comments