| 118 | } |
| 119 | |
| 120 | int strings_share_lock(struct sip_msg *msg, str *s1, str *s2) |
| 121 | { |
| 122 | if (core_hash(s1, NULL, lock_pool_size) == |
| 123 | core_hash(s2, NULL, lock_pool_size)) { |
| 124 | |
| 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | return -1; |
| 129 | } |
| 130 | |
| 131 | void destroy_script_locks(void) |
| 132 | { |
nothing calls this directly
no test coverage detected