| 580 | } |
| 581 | |
| 582 | static int omCheckPattern(char* s, char p, size_t size) |
| 583 | { |
| 584 | int i; |
| 585 | for (i=0; i<size; i++) |
| 586 | { |
| 587 | if (s[i] != p) |
| 588 | return 1; |
| 589 | } |
| 590 | return 0; |
| 591 | } |
| 592 | |
| 593 | #ifdef OM_TRACK_BACKTRACE |
| 594 | #define OM_ALLOC_FRAMES(d_addr) d_addr->alloc_frames |
no outgoing calls
no test coverage detected