Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tf2/src/buffer_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <string>
#include <utility>
#include <vector>
#include <string.h>

#include "tf2/buffer_core.h"
#include "tf2/time_cache.h"
Expand Down Expand Up @@ -177,7 +178,7 @@ CompactFrameID BufferCore::validateFrameId(
}

CompactFrameID id = lookupFrameNumber(frame_id);
if (id == 0) {
if (id == 0 && strstr(function_name_arg, "canTransform") == NULL) {
fillOrWarnMessageForInvalidFrame(
function_name_arg, frame_id, error_msg, "frame does not exist");
}
Expand Down