mirror of
				https://github.com/psycopg/psycopg2.git
				synced 2025-11-04 01:37:31 +03:00 
			
		
		
		
	psycopg_escape_string: don't make me cringe
Just reformatted.
This commit is contained in:
		
							parent
							
								
									79de02d7d5
								
							
						
					
					
						commit
						15cba69a20
					
				| 
						 | 
					@ -55,8 +55,8 @@ psycopg_escape_string(connectionObject *conn, const char *from, Py_ssize_t len,
 | 
				
			||||||
    if (len < 0) {
 | 
					    if (len < 0) {
 | 
				
			||||||
        len = strlen(from);
 | 
					        len = strlen(from);
 | 
				
			||||||
    } else if (strchr(from, '\0') != from + len) {
 | 
					    } else if (strchr(from, '\0') != from + len) {
 | 
				
			||||||
        PyErr_Format(PyExc_ValueError, "A string literal cannot contain NUL (0x00) characters.");
 | 
					        PyErr_Format(PyExc_ValueError,
 | 
				
			||||||
 | 
					            "A string literal cannot contain NUL (0x00) characters.");
 | 
				
			||||||
        return NULL;
 | 
					        return NULL;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user