** Like strlen(). But handles NULL pointer arguments. */
| 13778 | ** Like strlen(). But handles NULL pointer arguments. |
| 13779 | */ |
| 13780 | static int recoverStrlen(const char *zStr){ |
| 13781 | if( zStr==0 ) return 0; |
| 13782 | return (int)(strlen(zStr)&0x7fffffff); |
| 13783 | } |
| 13784 | |
| 13785 | /* |
| 13786 | ** This function is a no-op if the recover handle passed as the first |
no outgoing calls
no test coverage detected