- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在创建一个函数,它将目录路径作为参数传递,或者如果它留空,则提示用户输入。
我已经设置了我的 PATH_MAX=100
和 if
语句来检查 if ((strlen(folder path) + strlen(file path)) > PATH_MAX)
将要求用户再次输入。
然而,当我检查所有条件是否有效时(设置 PATH_MAX=20
),如果 folder path
本身超过了 PATH_MAX
,缓冲区由于大小不足而崩溃(L'Buffer is too small' &&0
)。
有没有办法事先检查用户是否超过PATH_MAX
并通知路径太长,以避免缓冲区崩溃?或者我应该只增加 PATH_MAX
的大小?
代码:
#define PATH_MAX 100
void CreateFiles(char folder[PATH_MAX])
{
char addrbook[PATH_MAX] = "caf-sorted.txt";
char path[PATH_MAX]="";
if ((strlen(folder)<4))
{
//User inputs directory
printf("Enter New Directory\n(!Do not enter filename!)\n");
if (NULL == fgets(path, sizeof path, stdin))
{//check if fgets fails
if (ferror(stdin))
{
folder="";
perror("fgets() failed");
CreateFiles(folder);
return;
}
}
}
else
memcpy(path, folder, strlen(folder));
path[strcspn(path, "\n\r")] = 0;
if (strlen(addrbook) > 0 && '\\' != path[strlen(path) - 1])
{
if (PATH_MAX < strlen(path))
{
errno = EINVAL;
perror("'path' too long");
folder="";
CreateFiles(folder);
return;
}
strcat(path, "\\");
}
if (PATH_MAX < (strlen(path) + strlen(addrbook)))
{
errno = EINVAL;
perror("'path\\filename' too long");
folder="";
CreateFiles(folder);
return;
}
}
最佳答案
您必须考虑终止空字符
if (!(strlen(path) < PATH_MAX))
确保路径中的字符数(不含空字符)始终至少比 PATH_MAX 少一个,这为终止空字符留出空间。
你必须考虑到你使用的每个 C 字符串,因为 strlen(char *string) 总是比你需要存储字符串的空间少一个,如果你希望能够以 null 终止它。
编辑:所以我至少研究了您函数的前几行,并尝试快速重新实现它们。它不漂亮,但它有效:
#include <stdio.h>
#include <string.h>
#include <strings.h>
#define PATH_MAX 100
void create_files (char *folder)
{
char addr_book[] = "caf-sorted.txt";
char path[PATH_MAX];
// Setting all bytes in *path to zero
bzero(path, PATH_MAX);
// If the folder name is too short, we ask for a new one
if (strlen(folder) < 4) {
char c; // This will store our input from stdin, one char at a time
// As long as the supplied path name is too short, we'll keep asking:
while (strlen(path) < 4) {
printf("Please enter a path (no filename!): ");
// We get one character at a time from stdin using getc(...):
// until we encounter a newline
for (int i = 0; (c = getc(stdin)) != '\n'; i++) {
if (i < PATH_MAX - 1) {
// As long as we have space for two more characters
// (the value of c plus a null character after it)
// We'll keep appending c:
path[i] = c;
} else if (i == PATH_MAX - 1) {
// If we get too many characters from stdin, we
// display an error message and reset our path to
// all null characters again, so the outermost loop
// will run again
fprintf(stderr, "Path is too long!\n");
bzero(path, PATH_MAX);
// Notice that we do not have a break statement
// here, we iterate through the input string from
// stdin until we encounter a newline character,
// so we don't have any superfluous characters
// that spill into the beginning ouf our freshly
// reset path string
}
}
}
} else {
// Or, you know, if the programmer specifies a proper value,
// Just do it the easy way and copy that into our path string
// (although this will truncate a folder name that is too long):
strncpy(path, folder, PATH_MAX - 1);
}
}
int main ()
{
create_files("");
return 0;
}
关于检查输入字符串是否超过缓冲区限制(崩溃),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43683696/
我有一个 ServiceBusQueue(SBQ),它获取大量消息负载。我有一个具有 accessRights(manage) 的 ServiceBusTrigger(SBT),它不断轮询来自 SBQ
在下面给出的结果集中,有 2 个唯一用户 (id),并且查询中可能会出现更多此类用户: 这是多连接查询: select id, name, col1Code, col2Code, col2Va
我正在用 Python 2.7.3 编写一个带有 GRequests 的小脚本和 lxml 可以让我从各种网站收集一些收藏卡价格并进行比较。问题是其中一个网站限制了请求的数量,如果我超过它,就会发回
我想知道何时实际使用删除级联或删除限制以及更新级联或更新限制。我对使用它们或在我的数据库中应用感到很困惑。 最佳答案 在外键约束上使用级联运算符是一个热门话题。 理论上,如果您知道删除父对象也将自动删
下面是我的输出,我只想显示那些重复的名字。每个名字都是飞行员,数字是飞行员驾驶的飞机类型。我想显示驾驶不止一架飞机的飞行员的姓名。我正在使用 sql*plus PIL_PILOTNAME
我正在评估不同的移动框架,我认为 nativescript 是一个不错的选择。但我不知道开发过程是否存在限制。例如,我对样式有限制(这并不重要),但我想知道将来我是否可以有限制并且不能使用某些 nat
我正在尝试使用 grails 数据绑定(bind)将一些表单参数映射到我的模型中,但我认为在映射嵌入式集合方面可能存在一些限制。 例如,如果我提交一些这样的参数,那么映射工作正常: //this wo
是否可以将 django 自过滤器起的时间限制为 7 天。如果日期超过 7 天,则不应用过滤器 最佳答案 timesince 的源代码位于 django/django/utils/timesince.
我想在我的网站上嵌入一个 PayPal 捐赠按钮。但问题是我住在伊朗——这个国家受到制裁,人们不使用国际银行账户或主要信用卡。 有什么想法吗?请帮忙! 问候 沮丧 最佳答案 您可以在伊朗境内使用为伊朗
这是我的查询 select PhoneNumber as _data,PhoneType as _type from contact_phonenumbers where ContactID = 3
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个答案) 关闭
我的一个项目的 AndroidManifest.xml 变得越来越大(> 1000 行),因为我必须对某些文件类型使用react并且涵盖所有情况变得越来越复杂。我想知道 list 大小是否有任何限制。
在使用 Sybase、Infomix、DB2 等其他数据库产品多年后使用 MySQL 5.1 Enterprise 时;我遇到了 MySQL 不会做的事情。例如,它只能为 SELECT 查询生成 EX
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个回答) 关闭5年
通常我们是在{$apache}/conf/httpd.conf中设置Apache的参数,然而我们并没有发现可以设置日志文件大小的配置指令,通过参考http://httpd.apache.org/do
我正在搜索最大的 Android SharedPreferences 键值对,但找不到任何好的答案。其次,我想问一下,如果我有一个键,它的字符串值限制是多少。多少字符可以放入其中。如果我需要频繁更改值
我目前正在试验 SoundCloud API,并注意到我对/tracks 资源的 GET 请求一次从不返回超过 200 个结果。关于这个的几个问题: 这个限制是故意的吗? 有没有办法增加这个限制? 如
我正在与一家名为 Dwolla 的金融技术公司合作,该公司提供了一个 API,用于将银行信息附加到用户并收取/发送 ACH 付款。 他们需要我将我的 TLS 最低版本升级到 1.2(禁用 TLS 1.
我在 PHP 中有一个多维数组,如下所示: $array = Array ( [0] => Array ( [bill] => 1 ) [1] => Array ( [
我在获取下一个查询的第一行时遇到了问题: Select mar.Title MarketTitle, ololo.NUMBER, ololo.Title from Markets mar JOIN(
我是一名优秀的程序员,十分优秀!