Commit 47085e57 by Adeel

Code: Fixed another segmentation fault.

parent 26c1bf31
...@@ -7,7 +7,6 @@ extern "C" { ...@@ -7,7 +7,6 @@ extern "C" {
void free_context(sass_context* ctx) { void free_context(sass_context* ctx) {
delete[] ctx->source_string; delete[] ctx->source_string;
delete[] ctx->output_path;
delete[] ctx->options.include_paths; delete[] ctx->options.include_paths;
delete[] ctx->options.image_path; delete[] ctx->options.image_path;
sass_free_context(ctx); sass_free_context(ctx);
...@@ -15,7 +14,6 @@ extern "C" { ...@@ -15,7 +14,6 @@ extern "C" {
void free_file_context(sass_file_context* fctx) { void free_file_context(sass_file_context* fctx) {
delete[] fctx->input_path; delete[] fctx->input_path;
delete[] fctx->output_path;
delete[] fctx->options.include_paths; delete[] fctx->options.include_paths;
delete[] fctx->options.image_path; delete[] fctx->options.image_path;
sass_free_file_context(fctx); sass_free_file_context(fctx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment