Commit ef12f8a7 authored by garciay's avatar garciay
Browse files

Bug fixed after build with Elvior

parent dd540b3e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ group ParameterOperations {
		  { id := "response=""""", paramValue := omit } // already enclosed to " characters
	  }};
	      
	  return v_result;
	  return valueof(v_result);
	}


@@ -194,7 +194,7 @@ group ParameterOperations {
		}
	  };
      
	  return v_result;
	  return valueof(v_result);
	}

	/**
@@ -2138,7 +2138,7 @@ group SDPOperations{
				{
					if (ischosen(vc_sdp_remote.media_list[i].attributes[j].rtpmap))
					{
						if (v_PT == regexp(vc_sdp_remote.media_list[i].attributes[j].rtpmap.attr_value,	v_mypat,	0))
						if (v_PT == regexp(vc_sdp_remote.media_list[i].attributes[j].rtpmap.attr_value,	valueof(v_mypat),	0))
						{
							v_rtpmap := vc_sdp_remote.media_list[i].attributes[j].
							rtpmap.attr_value;