We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9266d26 commit 0bc35e3Copy full SHA for 0bc35e3
src/expand.cpp
@@ -246,7 +246,8 @@ namespace Sass {
246
std::string str(prop->to_string(ctx.c_options));
247
new_p = SASS_MEMORY_NEW(String_Constant, old_p->pstate(), str);
248
}
249
- Expression_Obj value = d->value()->perform(&eval);
+ Expression_Obj value = d->value();
250
+ if (value) value = value->perform(&eval);
251
Block_Obj bb = ab ? operator()(ab) : NULL;
252
if (!bb) {
253
if (!value || (value->is_invisible() && !d->is_important())) return 0;
0 commit comments