Explorar o código

Fixed potential memory leak in RingBuffer

Joseph Henry %!s(int64=6) %!d(string=hai) anos
pai
achega
23996c7e6b
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  1. 5 0
      node/RingBuffer.hpp

+ 5 - 0
node/RingBuffer.hpp

@@ -72,6 +72,11 @@ public:
 		memset(buf, 0, sizeof(T) * size);
 	}
 
+	~RingBuffer()
+	{
+		delete [] buf;
+	}
+
 	/**
 	 * @return A pointer to the underlying buffer
 	 */