| 
					
				 | 
			
			
				@@ -1647,8 +1647,7 @@ test_util_split_lines(void *ptr) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   for (i=0; tests[i].orig_line; i++) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     sl = smartlist_create(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /* Allocate space for string and trailing NULL */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    orig_line = tor_malloc(tests[i].orig_length + 1); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    memcpy(orig_line, tests[i].orig_line, tests[i].orig_length + 1); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    orig_line = tor_memdup(tests[i].orig_line, tests[i].orig_length + 1); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     tor_split_lines(sl, orig_line, tests[i].orig_length); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     j = 0; 
			 |