Commit e1146489 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

scan-build warning

Value stored to 'len' is never read
parent b8118dd4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -97,10 +97,8 @@ static int check_gss_err(struct SessionHandle *data,
                                    GSS_C_NULL_OID,
                                    &msg_ctx, &status_string);
      if(maj_stat == GSS_S_COMPLETE) {
        if(sizeof(buf) > len + status_string.length) {
        if(sizeof(buf) > len + status_string.length)
          strcpy(buf+len, (char*) status_string.value);
          len += status_string.length;
        }
        gss_release_buffer(&min_stat, &status_string);
        break;
      }