Kaydet (Commit) 2152a412 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: variable may be used uninitialized

Change-Id: Icfdf8dddc4da20785e0881a95f50ee498e8405cd
üst 77df50a8
......@@ -870,7 +870,7 @@ static inline char* generate_phony_line(char* phony_target, char* extension)
{
char* src;
char* dest;
char* last_dot;
char* last_dot = NULL;
//fprintf(stderr, "generate_phony_line called with phony_target %s and extension %s\n", phony_target, extension);
for(dest = phony_content_buffer+work_dir_len, src = phony_target; *src != 0; ++src, ++dest)
{
......@@ -911,7 +911,7 @@ char* end;
char* cursor;
char* cursor_out;
char* base;
char* created_line;
char* created_line = NULL;
char* src_relative;
int continuation = 0;
char last_ns = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment