diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-02-18 21:21:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-02-18 21:21:19 (GMT) |
commit | 95e204291faa4800781d2f302c41f86a3f01851d (patch) | |
tree | 5c9b36987a0a99b7339148306ee396f6c5899673 /src/analysis | |
parent | 6684d46ce709e0138a601db4223e0ffb3d7f4ff3 (diff) |
Fixed the suffix of memory content file backends.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/contents/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/contents/memory.c b/src/analysis/contents/memory.c index 4490238..232a41d 100644 --- a/src/analysis/contents/memory.c +++ b/src/analysis/contents/memory.c @@ -286,7 +286,7 @@ GBinContent *g_memory_content_new(const bin_t *data, phys_t size) result = g_object_new(G_TYPE_MEMORY_CONTENT, NULL); - fd = make_tmp_file("memcnt", ".bin", &result->storage); + fd = make_tmp_file("memcnt", "bin", &result->storage); if (fd == -1) goto gmcn_error; status = safe_write(fd, data, size); |