From 47085e5760ac9a4176b432e3857266120e5c397a Mon Sep 17 00:00:00 2001 From: Adeel Date: Tue, 26 Aug 2014 00:43:22 +0300 Subject: [PATCH] Code: Fixed another segmentation fault. --- sass_context_wrapper.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sass_context_wrapper.cpp b/sass_context_wrapper.cpp index 01b964fe1..7dfbcc46d 100644 --- a/sass_context_wrapper.cpp +++ b/sass_context_wrapper.cpp @@ -7,7 +7,6 @@ extern "C" { void free_context(sass_context* ctx) { delete[] ctx->source_string; - delete[] ctx->output_path; delete[] ctx->options.include_paths; delete[] ctx->options.image_path; sass_free_context(ctx); @@ -15,7 +14,6 @@ extern "C" { void free_file_context(sass_file_context* fctx) { delete[] fctx->input_path; - delete[] fctx->output_path; delete[] fctx->options.include_paths; delete[] fctx->options.image_path; sass_free_file_context(fctx);