-
Notifications
You must be signed in to change notification settings - Fork 49
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
Workaround for Holley DTZ541 #76
Conversation
hacki11
commented
Sep 22, 2019
- handling incorrect sml_time object
- support crc-16/kermit algorithm
- handling incorrect sml_time object - support crc-16/kermit algorithm
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.
see comments. mem leak introduced.
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.
looks ok for me.
Fixed review findings |
If there aren’t any more findings a merge would be nice |
Out of curiosity- why the unrelated whitespace change? Does that make anything more consistent? |
Seems that was my auto formatting of clion. Perhaps tab replacement with whitespaces and indentation fixes. Can revert that changes if you want. |
Please revert unwanted changes and check style- this repo is typically using tabs, you have spaces apparently. Reformatting the entire codebase would be a different issue. |
fixed |
if (sml_buf_get_next_length(buf) != 2) { | ||
buf->error = 1; | ||
goto error; | ||
} |
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.
Hier stimmt noch die Einrückung nicht?
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.
Doch, der Block gehört nun in den else Zweig
Fixes #75 |