You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 16, 2018. It is now read-only.
if ord($this->data[$this->offset]) is 0x0A -> (ord($this->data[$this->offset]) != 0x0d ) is true -> whole expression is true
if ord($this->data[$this->offset]) is 0x0d -> (ord($this->data[$this->offset]) != 0x0A ) is true -> whole expression is true
if ord($this->data[$this->offset]) is 0x0C (some other value) -> (ord($this->data[$this->offset]) != 0x0A ) is true -> whole expression is true
The expression:
in function skipComment is always true
if ord($this->data[$this->offset]) is 0x0A -> (ord($this->data[$this->offset]) != 0x0d ) is true -> whole expression is true
if ord($this->data[$this->offset]) is 0x0d -> (ord($this->data[$this->offset]) != 0x0A ) is true -> whole expression is true
if ord($this->data[$this->offset]) is 0x0C (some other value) -> (ord($this->data[$this->offset]) != 0x0A ) is true -> whole expression is true
This possible defect found by AppChecker
The text was updated successfully, but these errors were encountered: