Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:12.2:ARM
alpine
operation-may-be-undefined-warning.diff
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File operation-may-be-undefined-warning.diff of Package alpine
--- alpine/folder.c +++ alpine/folder.c @@ -6013,7 +6013,7 @@ continue; case 14 : /* toggle comparison */ - *cmp = ++(*cmp) % 3; + *cmp = ((*cmp) + 1) % 3; continue; case -1 : /* cancel */ --- imap/src/c-client/mail.c +++ imap/src/c-client/mail.c @@ -2931,8 +2931,14 @@ /* parse time */ d = strtoul (s+1,(char **) &s,10); if (*s != ':') return NIL; - m = strtoul (++s,(char **) &s,10); - y = (*s == ':') ? strtoul (++s,(char **) &s,10) : 0; + s++; + m = strtoul (s,(char **) &s,10); + if (*s == ':') { + s++; + y = strtoul(s, (char **)&s, 10); + } else { + y = 0; + } /* validity check time */ if ((d > 23) || (m > 59) || (y > 60)) return NIL; /* set values in elt */
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor