Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plug memory leaks #510

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/Protonect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ int main(int argc, char *argv[])
MyFileLogger *filelogger = new MyFileLogger(getenv("LOGFILE"));
if (filelogger->good())
libfreenect2::setGlobalLogger(filelogger);
else
delete filelogger;
/// [file logging]

/// [context]
Expand Down
6 changes: 3 additions & 3 deletions examples/viewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ Viewer::Viewer() : shader_folder("src/shader/"),
win_width(600),
win_height(400)
{
// init glfw - if already initialized nothing happens
int init = glfwInit();

}

static void glfwErrorCallback(int error, const char* description)
Expand All @@ -18,6 +15,9 @@ static void glfwErrorCallback(int error, const char* description)

void Viewer::initialize()
{
// init glfw - if already initialized nothing happens
int init = glfwInit();

GLFWerrorfun prev_func = glfwSetErrorCallback(glfwErrorCallback);
if (prev_func)
glfwSetErrorCallback(prev_func);
Expand Down
6 changes: 6 additions & 0 deletions src/cpu_depth_packet_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,12 @@ class CpuDepthPacketProcessorImpl: public WithPerfLogging
//ir_frame = new Frame(512, 424, 12);
}

~CpuDepthPacketProcessorImpl()
{
delete ir_frame;
delete depth_frame;
}

/** Allocate a new depth frame. */
void newDepthFrame()
{
Expand Down
1 change: 1 addition & 0 deletions src/depth_packet_stream_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ DepthPacketStreamParser::DepthPacketStreamParser() :

DepthPacketStreamParser::~DepthPacketStreamParser()
{
delete[] work_buffer_.data;
}

void DepthPacketStreamParser::setPacketProcessor(libfreenect2::BaseDepthPacketProcessor *processor)
Expand Down
1 change: 1 addition & 0 deletions src/frame_listener_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ SyncMultiFrameListener::SyncMultiFrameListener(unsigned int frame_types) :

SyncMultiFrameListener::~SyncMultiFrameListener()
{
release(impl_->next_frame_);
delete impl_;
}

Expand Down
3 changes: 1 addition & 2 deletions src/libfreenect2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ class Freenect2Impl
{
unsigned char buffer[1024];
r = libusb_get_string_descriptor_ascii(dev_handle, dev_desc.iSerialNumber, buffer, sizeof(buffer));
libusb_close(dev_handle);

if(r > LIBUSB_SUCCESS)
{
Expand All @@ -481,8 +482,6 @@ class Freenect2Impl
{
LOG_ERROR << "failed to get serial number of Kinect v2: " << PrintBusAndDevice(dev, r);
}

libusb_close(dev_handle);
}
else
{
Expand Down
6 changes: 6 additions & 0 deletions src/opencl_depth_packet_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,12 @@ class OpenCLDepthPacketProcessorImpl: public WithPerfLogging
}
}

~OpenCLDepthPacketProcessorImpl()
{
delete ir_frame;
delete depth_frame;
}

void generateOptions(std::string &options) const
{
std::ostringstream oss;
Expand Down
10 changes: 10 additions & 0 deletions src/opengl_depth_packet_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,11 @@ struct Texture : public WithOpenGLBindings
{
}

~Texture()
{
delete[] data;
}

void bindToUnit(GLenum unit)
{
gl()->glActiveTexture(unit);
Expand Down Expand Up @@ -981,6 +986,11 @@ void OpenGLDepthPacketProcessor::process(const DepthPacket &packet)
delete depth;
}
}
else
{
delete ir;
delete depth;
}
}

} /* namespace libfreenect2 */
2 changes: 2 additions & 0 deletions src/turbo_jpeg_rgb_packet_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ class TurboJpegRgbPacketProcessorImpl: public WithPerfLogging

~TurboJpegRgbPacketProcessorImpl()
{
delete frame;

if(decompressor != 0)
{
if(tjDestroy(decompressor) == -1)
Expand Down