-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Add image class #1017
Add image class #1017
Conversation
@sjinks Great partner waiting for you to check and optimize, :) |
@@ -340,7 +340,13 @@ mvc/model/query/scanner.c \ | |||
mvc/view/engine/volt/parser.c \ | |||
mvc/view/engine/volt/scanner.c \ | |||
annotations/parser.c \ | |||
annotations/scanner.c" | |||
annotations/scanner.c |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot the trailing \ here. Should be
annotations/scanner.c \
ZVAL_LONG(quality, 100); | ||
} else if (Z_TYPE_P(quality) != IS_LONG) { | ||
PHALCON_INIT_NVAR(quality); | ||
ZVAL_LONG(quality, 100); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zval_dtor(quality);
before ZVAL_LONG();
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use PHALCON_INIT_NVAR also add zval_dtor it?
[NFR]Whether can add an image class.
#902