mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
minor fix
This commit is contained in:
parent
050f0af19a
commit
032053d55d
|
@ -20,6 +20,7 @@
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <iterator>
|
||||||
|
|
||||||
#include "absl/algorithm/container.h"
|
#include "absl/algorithm/container.h"
|
||||||
#include "convert_helper.h"
|
#include "convert_helper.h"
|
||||||
|
@ -160,7 +161,7 @@ int main(int argc, char* argv[]) {
|
||||||
LOG(FATAL) << "transfer from sandboxee failed";
|
LOG(FATAL) << "transfer from sandboxee failed";
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
for (int j = 0; j < width * height; j++) {
|
for (int j = 0; j < width * height; ++j) {
|
||||||
data[i][j] = image_components_data[j];
|
data[i][j] = image_components_data[j];
|
||||||
}
|
}
|
||||||
image_components[i].data = data[i];
|
image_components[i].data = data[i];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user