Skip to content
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

Fix macro invocation with post-increment index as argument #1125

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Mar 3, 2022

  1. Small bug fix at WebRequest.cpp

    In WebRequest.cpp at line 150:
    while (i<len && __is_param_char(((char*)buf)[i++]));
    the macro __is_param_char will expand producing multiple i++ invocations making the algorithm to (sometimes) fail.
    NDMDevel committed Mar 3, 2022
    Configuration menu
    Copy the full SHA
    1b94b29 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from NDMDevel/NDMDevel-patch-1

    Small bug fix at WebRequest.cpp
    NDMDevel committed Mar 3, 2022
    Configuration menu
    Copy the full SHA
    0acfdd9 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2022

  1. Configuration menu
    Copy the full SHA
    b603052 View commit details
    Browse the repository at this point in the history