Ticket #1923 (closed defect: wontfix)
getting-out-assignments-from-some-if-calls
Reported by: | vit_r | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | |
Component: | mc-core | Version: | |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | Votes for changeset: |
Description (last modified by andrew_b) (diff)
Example
if ((pid = fork ()) == -1) {
is replaced by
pid = fork (); if (pid == -1) {
Attachments
Change History
Changed 15 years ago by vit_r
- Attachment 1923-getting-out-assignments-from-some-ifs.patch added
Note: See
TracTickets for help on using
tickets.
Getting out assignments(X = foo) from some if-calls